-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 5 posts ] 
Author Message
 Post subject: UTF-8 Problem
PostPosted: Thu Aug 23, 2007 6:04 am 
Newbie

Joined: Wed Mar 07, 2007 12:43 pm
Posts: 10
Hallo,

ich habe eine Webapplikation, basierend auf Struts, JSPs und Hibernate. Die Seiten sind alle valide XHTML-Dokumente mit dem Encoding UTF-8, auch die Postgres-Datenbank steht auf UTF-8.

Mein Problem ist, wenn Daten aus Formularen mit Sonderzeichen, wie ñ, ç etc. in die Datenbank geschrieben werden, kommt nur "ISO-Latin-1"-Schrott an.

Sicherheitshalber habe ich meine Forms auch mit einem Encoding versehen:
Code:
<form action="/retrobib/secure/change/changeWerk.html" method="post" accept-charset="UTF-8">

aber das bringt nichts.

Hibernate bekommt die Datenquelle aus der context.xml vom Tomcat:
Code:
        <property name="connection.datasource">
            java:/comp/env/jdbc/retrobibDB
        </property>

        <!-- SQL-dialect for postgresql -->
        <property name="dialect">
            org.hibernate.dialect.PostgreSQLDialect
        </property>

... die so aussieht:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<Context path="/retrobib">
   
    <Resource auth="Container"
              driverClassName="org.postgresql.Driver"
              maxActive="8"
              maxIdle="4"
              name="jdbc/retrobibDB"
              password="***"
              type="javax.sql.DataSource"
              url="jdbc:postgresql://localhost:5432/retrobib"
              username="***"
              useUnicode="true"
              characterEncoding="UTF-8" />
         
</Context>


Kann ich Hibernate irgendwo das Encoding der Datenbank mitteilen? Oder hat Jemand einen anderen Tipp?

Die Webapplikation läuft unter OS X.

Grüße,
Christian


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 23, 2007 6:50 am 
Newbie

Joined: Mon Jul 02, 2007 2:12 pm
Posts: 18
Hallo,

das hat nix mit Hibernate zu tun. Wenn Du im Debugger mal anhälst und den Request untersuchst, stelltst Du fest, dass die Parameter für die Eingabefelder schon das falsche Encoding haben.

Der Browser sendet Formdaten immer in dem Encoding, in dem die HTML-Seite kam, als Encoding in HTML-Seite (JSP) setzen, dann kommen die Eingaben richtig im Request an und somit in die POJO's. Hibernate schreibt diese Strings (UCS-2) per JDBC-Driver in die DB und der JDBC-Driver wird's schon richten. ;-)

-Thomas


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 23, 2007 7:01 am 
Newbie

Joined: Wed Mar 07, 2007 12:43 pm
Posts: 10
Hm,

alle Seiten beginnen brav mit:
Code:
<?xml version="1.0" encoding="UTF-8"?>

<!DOCTYPE html
     PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
   
    <head>
        <title>Willkommen bei der retro Bibliothek</title>       
        <meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
[...]


resp. die JSPs mit

Code:
<?xml version="1.0" encoding="UTF-8"?>

<%@ page contentType="text/html; charset=UTF-8" %>
<%@ page pageEncoding="UTF-8" %>

<%@ include file="/jspIncludes/trailer.jsp" %>

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
[...]


Also sollten die Seiten doch UTF-8 sein?


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 24, 2007 7:53 am 
Newbie

Joined: Mon Jul 02, 2007 2:12 pm
Posts: 18
Hi,

ja, sieht gut aus. Zur Sicherheit kannst Du in Firefox mit LiveHttpHeaders prüfen, ob wirklich UTF-8 Zeichen übertragen werden:

...&q=%C3%BCbel...

Suche bei Google nach übel :-)

Die nächste Fehlerquelle kann der AppServer sein. Dem muss man beibringen, das URL-Parameter in UTF-8 sind. Bei WebSphere & Co kann man das in Config setzen (frag' bitte nicht wo).

Man kann auch ServletFilter schreiben, der RequestEncoding setzt:

request.setCharacterEncoding("UTF-8");

Aber wie gesagt, mit Hibernate hat das nix zu tun.

-Thomas


Top
 Profile  
 
 Post subject:
PostPosted: Fri Aug 24, 2007 8:05 am 
Newbie

Joined: Wed Mar 07, 2007 12:43 pm
Posts: 10
ThoKes wrote:
request.setCharacterEncoding("UTF-8");


Genau das hat das Problem gelöst. Der Tomcat verschlampt nach einem Sun-Forum das Encoding :-(

Danke!

Grüße, Christian


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 5 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.