0

Web プロジェクト (Java EE) でポーランド語の文字が必要です。データベースに行を挿入すると、すべて問題ありませんが、ページに行を挿入しようとすると。データベースで私が見る?代わりにポーランド文字。ページに UTF-8 エンコーディングを設定しました。

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

そしてglassfish-web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE glassfish-web-app PUBLIC "-//GlassFish.org//DTD GlassFish Application Server 3.1 Servlet 3.0//EN" "http://glassfish.org/dtds/glassfish-web-app_3_0-1.dtd">
<glassfish-web-app error-url="">
  <class-loader delegate="true"/>
  <parameter-encoding default-charset="UTF-8" />
  <jsp-config>
    <property name="keepgenerated" value="true">
      <description>Keep a copy of the generated servlet class' java code.</description>
    </property>
  </jsp-config>
</glassfish-web-app>

他にどこに何かを設定する必要がありますか?

4

1 に答える 1