-->
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.  [ 12 posts ] 
Author Message
 Post subject: many-to-one mapping troubles
PostPosted: Thu Aug 12, 2004 3:48 am 
Newbie

Joined: Wed Jul 21, 2004 3:58 am
Posts: 17
Hi guys !

I'm trying to make a <many-to-one mapping> and when I start Tomcat, It say to me that "The requested resource (/gestionAV) is not available."
Is my mapping wrong ? I can't understand why it does that.

PS : Before I had a hand made mapping (without many-to-one), and my application worked perfectly.

Hibernate version: 2.1

Mapping documents:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping
PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
<hibernate-mapping>
<class name="capgemini.gestionav.modele.valueobject.AvantVenteDTO" table="Avantvente">
<id name="id" type="long" unsaved-value="null">
<column name="Av_Id" sql-type="bigint" not-null="true"/>
<generator class="identity"/>
</id>
</property>
<property name="remise">
<column name="AV_Remise" sql-type="date"/>
</property>
<property name="estimReussite">
<column name="AV_Estimreussite" sql-type="int" not-null="true"/>
</property>
<property name="commentaires">
<column name="AV_Commentaires" sql-type="longtext"/>
</property>
<many-to-one name="offre" column="Off_Id" class="capgemini.gestionav.modele.valueobject.OffreDTO"/>
<many-to-one name="client" column="Cl_Id" class="capgemini.gestionav.modele.valueobject.ClientDTO"/>
<many-to-one name="aTechnique" column="Emp_aTech_Id" class="capgemini.gestionav.modele.valueobject.EmployeDTO"/>
<many-to-one name="aCommercial" column="Emp_aComm_Id" class="capgemini.gestionav.modele.valueobject.EmployeDTO"/>
</property>
</class>
</hibernate-mapping>



Name and version of the database you are using: MYSQL 4.0.20


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 12, 2004 3:58 am 
Hibernate Team
Hibernate Team

Joined: Tue Sep 09, 2003 2:10 pm
Posts: 3246
Location: Passau, Germany
Not enough info. Check the tomcat log for exceptions.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 12, 2004 4:01 am 
Newbie

Joined: Wed Jul 21, 2004 3:58 am
Posts: 17
michael wrote:
Not enough info. Check the tomcat log for exceptions.

I haven't log tomcat ! It just not lauch my init servlet ! That's all !


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 12, 2004 4:03 am 
Newbie

Joined: Wed Jul 21, 2004 3:58 am
Posts: 17
If I put the many-to-one lines, Tomcat launch my application. I can't understand why ! that's crazy !


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 12, 2004 4:03 am 
Newbie

Joined: Wed Jul 21, 2004 3:58 am
Posts: 17
If I put the many-to-one lines in comments, Tomcat launch my application. I can't understand why ! that's crazy !


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 12, 2004 4:06 am 
Hibernate Team
Hibernate Team

Joined: Tue Sep 09, 2003 2:10 pm
Posts: 3246
Location: Passau, Germany
As I said, nobody can tell you without knowing what error occured. Try deploying to a Tomcat running localy and get the error log.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 12, 2004 4:15 am 
Newbie

Joined: Wed Jul 21, 2004 3:58 am
Posts: 17
Ok sorry !
Here is my Tomcat log on start :
Starting service Tomcat-Standalone
Apache Tomcat/4.0.6
Aug 12, 2004 10:12:55 AM org.apache.struts.util.PropertyMessageResources <init>
INFO: Initializing, config='org.apache.struts.util.LocalStrings', returnNull=true
Aug 12, 2004 10:12:55 AM org.apache.struts.util.PropertyMessageResources <init>
INFO: Initializing, config='org.apache.struts.action.ActionResources', returnNull=true
Aug 12, 2004 10:12:56 AM org.apache.struts.util.PropertyMessageResources <init>
INFO: Initializing, config='ApplicationResources', returnNull=true
10:13 [main] WARN capgemini.gestionav.init.Persistance - Initialisation du Filter
10:13 [main] INFO net.sf.hibernate.cfg.Environment - Hibernate 2.1.4
10:13 [main] INFO net.sf.hibernate.cfg.Environment - hibernate.properties not found
10:13 [main] INFO net.sf.hibernate.cfg.Environment - using CGLIB reflection optimizer
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - configuring from resource: /hibernate.cfg.xml
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Configuration resource: /hibernate.cfg.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... on-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... on-2.0.dtd in classpath
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - dialect=net.sf.hibernate.dialect.MySQLDialect
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - connection.datasource=java:comp/env/jdbc/gestionav
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - show_sql=true
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@1e2c841 [Attribute: name resource value "capgemini/gestionav/persistance/mapping/AvantVente.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/AvantVente.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.AvantVenteDTO -> Avantvente
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> Av_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> AV_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: offre -> Off_Id, type: capgemini.gestionav.modele.valueobject.OffreDTO
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: client -> Cl_Id, type: capgemini.gestionav.modele.valueobject.ClientDTO
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: aTechnique -> Emp_aTech_Id, type: capgemini.gestionav.modele.valueobject.EmployeDTO
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: aCommercial -> Emp_aComm_Id, type: capgemini.gestionav.modele.valueobject.EmployeDTO
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: lancement -> AV_Lancement, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: remise -> AV_Remise, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: estimReussite -> AV_Estimreussite, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: alerte -> AV_Alerte, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: risque -> AV_Risque, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: prestation -> AV_Prestation, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: statut -> AV_Statut, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: ca -> AV_CA, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: cout -> AV_Cout, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: tjm -> AV_TJM, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: technologie -> AV_Technologie, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: commentaires -> AV_Commentaires, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userCreate -> user_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userModif -> user_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateCreate -> date_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateModif -> date_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@b95f72 [Attribute: name resource value "capgemini/gestionav/persistance/mapping/Client.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/Client.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.ClientDTO -> Client
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> Cl_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> Cl_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: commentaires -> Cl_Commentaires, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userCreate -> user_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userModif -> user_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateCreate -> date_create, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateModif -> date_modif, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@1abf87 [Attribute: name resource value "capgemini/gestionav/persistance/mapping/Offre.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/Offre.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.OffreDTO -> Offre
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> Off_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> Off_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@1e0e954 [Attribute: name resource value "capgemini/gestionav/persistance/mapping/Employe.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/Employe.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.EmployeDTO -> Employe
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> Emp_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> Emp_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: prenom -> Emp_Prenom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userCreate -> user_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userModif -> user_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateCreate -> date_create, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateModif -> date_modif, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@b4d39c [Attribute: name resource value "capgemini/gestionav/persistance/mapping/DocClient.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/DocClient.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.DocClientDTO -> Doc_client
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> DCL_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: av_Id -> AV_Id, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> DCL_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: type -> DCL_Type, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: version -> DCL_Version, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: path -> DCL_Path, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userCreate -> user_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userModif -> user_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateCreate -> date_create, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateModif -> date_modif, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@25b72a [Attribute: name resource value "capgemini/gestionav/persistance/mapping/DocCapgemini.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/DocCapgemini.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.DocCapgeminiDTO -> Doc_Capgemini
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> DCG_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: av_Id -> AV_Id, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> DCG_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: type -> DCG_Type, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: version -> DCG_Version, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: path -> DCG_Path, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userCreate -> user_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userModif -> user_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateCreate -> date_create, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateModif -> date_modif, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@178a7d9 [Attribute: name resource value "capgemini/gestionav/persistance/mapping/DocBCS.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/DocBCS.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.DocBCSDTO -> Doc_BCS
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> BCS_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: av_Id -> AV_Id, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> BCS_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: type -> BCS_Type, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: version -> BCS_Version, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: path -> BCS_Path, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userCreate -> user_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userModif -> user_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateCreate -> date_create, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateModif -> date_modif, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@6014f7 [Attribute: name resource value "capgemini/gestionav/persistance/mapping/DocRevue.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/DocRevue.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.DocRevueDTO -> Doc_Revue
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> Rev_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: av_Id -> AV_Id, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> Rev_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: type -> Rev_Type, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: version -> Rev_Version, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: path -> Rev_Path, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userCreate -> user_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userModif -> user_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateCreate -> date_create, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateModif -> date_modif, type: date
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Configured SessionFactory: null
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - properties: {java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition, sun.boot.library.path=C:\Program Files\Java\j2re1.4.2_03\bin, java.vm.version=1.4.2_03-b02, connection.datasource=java:comp/env/jdbc/gestionav, java.vm.vendor=Sun Microsystems Inc., java.vendor.url=http://java.sun.com/, path.separator=;, java.vm.name=Java HotSpot(TM) Client VM, file.encoding.pkg=sun.io, user.country=US, sun.os.patch.level=Service Pack 4, java.vm.specification.name=Java Virtual Machine Specification, user.dir=C:\Program Files\Eclipse, java.runtime.version=1.4.2_03-b02, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, java.endorsed.dirs=C:\Program Files\Apache Tomcat 4.0\bin;C:\Program Files\Apache Tomcat 4.0\common\lib, os.arch=x86, java.io.tmpdir=C:\DOCUME~1\PTRUSS~1\LOCALS~1\Temp\, line.separator=
, java.vm.specification.vendor=Sun Microsystems Inc., user.variant=, java.naming.factory.url.pkgs=org.apache.naming, os.name=Windows 2000, sun.java2d.fontpath=, hibernate.connection.datasource=java:comp/env/jdbc/gestionav, java.library.path=C:\Program Files\Java\j2re1.4.2_03\bin;.;C:\WINNT\system32;C:\WINNT;C:\Program Files\Documentum\Shared;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\jdk1.3.1_06\bin;C:\Program Files\UltraEdit, java.specification.name=Java Platform API Specification, java.class.version=48.0, java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory, os.version=5.0, user.home=C:\Documents and Settings\ptrussart, user.timezone=Europe/Paris, catalina.useNaming=true, java.awt.printerjob=sun.awt.windows.WPrinterJob, file.encoding=Cp1252, java.specification.version=1.4, show_sql=true, catalina.home=C:\Program Files\Apache Tomcat 4.0, java.class.path=C:\Program Files\Apache Tomcat 4.0\bin\bootstrap.jar;C:\Program Files\Java\j2re1.4.2_03\lib\tools.jar, user.name=ptrussart, hibernate.show_sql=true, java.naming.factory.initial=org.apache.naming.java.javaURLContextFactory, java.vm.specification.version=1.0, java.home=C:\Program Files\Java\j2re1.4.2_03, sun.arch.data.model=32, hibernate.dialect=net.sf.hibernate.dialect.MySQLDialect, user.language=en, java.specification.vendor=Sun Microsystems Inc., awt.toolkit=sun.awt.windows.WToolkit, hibernate.cglib.use_reflection_optimizer=true, java.vm.info=mixed mode, java.version=1.4.2_03, java.ext.dirs=C:\Program Files\Java\j2re1.4.2_03\lib\ext, sun.boot.class.path=C:\Program Files\Apache Tomcat 4.0\bin\bootstrap.jar;C:\Program Files\Apache Tomcat 4.0\common\lib\mysql-connector-java-3.0.14-production-bin.jar;C:\Program Files\Apache Tomcat 4.0\common\lib\naming-common.jar;C:\Program Files\Apache Tomcat 4.0\common\lib\naming-resources.jar;C:\Program Files\Apache Tomcat 4.0\common\lib\servlet.jar;C:\Program Files\Apache Tomcat 4.0\common\lib\tools.jar;C:\Program Files\Java\j2re1.4.2_03\lib\rt.jar;C:\Program Files\Java\j2re1.4.2_03\lib\i18n.jar;C:\Program Files\Java\j2re1.4.2_03\lib\sunrsasign.jar;C:\Program Files\Java\j2re1.4.2_03\lib\jsse.jar;C:\Program Files\Java\j2re1.4.2_03\lib\jce.jar;C:\Program Files\Java\j2re1.4.2_03\lib\charsets.jar;C:\Program Files\Java\j2re1.4.2_03\classes, java.vendor=Sun Microsystems Inc., catalina.base=C:\Program Files\Apache Tomcat 4.0, file.separator=\, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, sun.io.unicode.encoding=UnicodeLittle, sun.cpu.endian=little, dialect=net.sf.hibernate.dialect.MySQLDialect, sun.cpu.isalist=pentium i486 i386}
10:13 [main] WARN capgemini.gestionav.init.Persistance - Building session factory
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - configuring from resource: /hibernate.cfg.xml
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Configuration resource: /hibernate.cfg.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... on-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... on-2.0.dtd in classpath
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - dialect=net.sf.hibernate.dialect.MySQLDialect
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - connection.datasource=java:comp/env/jdbc/gestionav
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - show_sql=true
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@1ba92db [Attribute: name resource value "capgemini/gestionav/persistance/mapping/AvantVente.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/AvantVente.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.AvantVenteDTO -> Avantvente
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> Av_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> AV_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: offre -> Off_Id, type: capgemini.gestionav.modele.valueobject.OffreDTO
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: client -> Cl_Id, type: capgemini.gestionav.modele.valueobject.ClientDTO
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: aTechnique -> Emp_aTech_Id, type: capgemini.gestionav.modele.valueobject.EmployeDTO
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: aCommercial -> Emp_aComm_Id, type: capgemini.gestionav.modele.valueobject.EmployeDTO
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: lancement -> AV_Lancement, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: remise -> AV_Remise, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: estimReussite -> AV_Estimreussite, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: alerte -> AV_Alerte, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: risque -> AV_Risque, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: prestation -> AV_Prestation, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: statut -> AV_Statut, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: ca -> AV_CA, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: cout -> AV_Cout, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: tjm -> AV_TJM, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: technologie -> AV_Technologie, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: commentaires -> AV_Commentaires, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userCreate -> user_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userModif -> user_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateCreate -> date_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateModif -> date_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@86d1da [Attribute: name resource value "capgemini/gestionav/persistance/mapping/Client.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/Client.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.ClientDTO -> Client
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> Cl_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> Cl_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: commentaires -> Cl_Commentaires, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userCreate -> user_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userModif -> user_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateCreate -> date_create, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateModif -> date_modif, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@13b625b [Attribute: name resource value "capgemini/gestionav/persistance/mapping/Offre.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/Offre.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.OffreDTO -> Offre
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> Off_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> Off_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@1b67d6a [Attribute: name resource value "capgemini/gestionav/persistance/mapping/Employe.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/Employe.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.EmployeDTO -> Employe
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> Emp_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> Emp_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: prenom -> Emp_Prenom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userCreate -> user_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userModif -> user_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateCreate -> date_create, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateModif -> date_modif, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@84aa02 [Attribute: name resource value "capgemini/gestionav/persistance/mapping/DocClient.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/DocClient.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.DocClientDTO -> Doc_client
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> DCL_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: av_Id -> AV_Id, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> DCL_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: type -> DCL_Type, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: version -> DCL_Version, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: path -> DCL_Path, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userCreate -> user_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userModif -> user_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateCreate -> date_create, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateModif -> date_modif, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@1b5a40a [Attribute: name resource value "capgemini/gestionav/persistance/mapping/DocCapgemini.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/DocCapgemini.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.DocCapgeminiDTO -> Doc_Capgemini
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> DCG_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: av_Id -> AV_Id, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> DCG_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: type -> DCG_Type, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: version -> DCG_Version, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: path -> DCG_Path, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userCreate -> user_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userModif -> user_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateCreate -> date_create, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateModif -> date_modif, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@71949b [Attribute: name resource value "capgemini/gestionav/persistance/mapping/DocBCS.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/DocBCS.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.DocBCSDTO -> Doc_BCS
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> BCS_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: av_Id -> AV_Id, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> BCS_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: type -> BCS_Type, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: version -> BCS_Version, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: path -> BCS_Path, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userCreate -> user_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userModif -> user_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateCreate -> date_create, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateModif -> date_modif, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - null<-org.dom4j.tree.DefaultAttribute@52eef4 [Attribute: name resource value "capgemini/gestionav/persistance/mapping/DocRevue.hbm.xml"]
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Mapping resource: capgemini/gestionav/persistance/mapping/DocRevue.hbm.xml
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - trying to locate http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath under net/sf/hibernate/
10:13 [main] DEBUG net.sf.hibernate.util.DTDEntityResolver - found http://hibernate.sourceforge.net/hibern ... ng-2.0.dtd in classpath
10:13 [main] INFO net.sf.hibernate.cfg.Binder - Mapping class: capgemini.gestionav.modele.valueobject.DocRevueDTO -> Doc_Revue
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: id -> Rev_Id, type: long
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: av_Id -> AV_Id, type: integer
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: nom -> Rev_Nom, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: type -> Rev_Type, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: version -> Rev_Version, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: path -> Rev_Path, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userCreate -> user_create, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: userModif -> user_modif, type: string
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateCreate -> date_create, type: date
10:13 [main] DEBUG net.sf.hibernate.cfg.Binder - Mapped property: dateModif -> date_modif, type: date
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - Configured SessionFactory: null
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - properties: {java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition, sun.boot.library.path=C:\Program Files\Java\j2re1.4.2_03\bin, java.vm.version=1.4.2_03-b02, connection.datasource=java:comp/env/jdbc/gestionav, java.vm.vendor=Sun Microsystems Inc., java.vendor.url=http://java.sun.com/, path.separator=;, java.vm.name=Java HotSpot(TM) Client VM, file.encoding.pkg=sun.io, user.country=US, sun.os.patch.level=Service Pack 4, java.vm.specification.name=Java Virtual Machine Specification, user.dir=C:\Program Files\Eclipse, java.runtime.version=1.4.2_03-b02, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, java.endorsed.dirs=C:\Program Files\Apache Tomcat 4.0\bin;C:\Program Files\Apache Tomcat 4.0\common\lib, os.arch=x86, java.io.tmpdir=C:\DOCUME~1\PTRUSS~1\LOCALS~1\Temp\, line.separator=
, java.vm.specification.vendor=Sun Microsystems Inc., user.variant=, java.naming.factory.url.pkgs=org.apache.naming, os.name=Windows 2000, sun.java2d.fontpath=, hibernate.connection.datasource=java:comp/env/jdbc/gestionav, java.library.path=C:\Program Files\Java\j2re1.4.2_03\bin;.;C:\WINNT\system32;C:\WINNT;C:\Program Files\Documentum\Shared;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\jdk1.3.1_06\bin;C:\Program Files\UltraEdit, java.specification.name=Java Platform API Specification, java.class.version=48.0, java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory, os.version=5.0, user.home=C:\Documents and Settings\ptrussart, user.timezone=Europe/Paris, catalina.useNaming=true, java.awt.printerjob=sun.awt.windows.WPrinterJob, file.encoding=Cp1252, java.specification.version=1.4, show_sql=true, catalina.home=C:\Program Files\Apache Tomcat 4.0, java.class.path=C:\Program Files\Apache Tomcat 4.0\bin\bootstrap.jar;C:\Program Files\Java\j2re1.4.2_03\lib\tools.jar, user.name=ptrussart, hibernate.show_sql=true, java.naming.factory.initial=org.apache.naming.java.javaURLContextFactory, java.vm.specification.version=1.0, java.home=C:\Program Files\Java\j2re1.4.2_03, sun.arch.data.model=32, hibernate.dialect=net.sf.hibernate.dialect.MySQLDialect, user.language=en, java.specification.vendor=Sun Microsystems Inc., awt.toolkit=sun.awt.windows.WToolkit, hibernate.cglib.use_reflection_optimizer=true, java.vm.info=mixed mode, java.version=1.4.2_03, java.ext.dirs=C:\Program Files\Java\j2re1.4.2_03\lib\ext, sun.boot.class.path=C:\Program Files\Apache Tomcat 4.0\bin\bootstrap.jar;C:\Program Files\Apache Tomcat 4.0\common\lib\mysql-connector-java-3.0.14-production-bin.jar;C:\Program Files\Apache Tomcat 4.0\common\lib\naming-common.jar;C:\Program Files\Apache Tomcat 4.0\common\lib\naming-resources.jar;C:\Program Files\Apache Tomcat 4.0\common\lib\servlet.jar;C:\Program Files\Apache Tomcat 4.0\common\lib\tools.jar;C:\Program Files\Java\j2re1.4.2_03\lib\rt.jar;C:\Program Files\Java\j2re1.4.2_03\lib\i18n.jar;C:\Program Files\Java\j2re1.4.2_03\lib\sunrsasign.jar;C:\Program Files\Java\j2re1.4.2_03\lib\jsse.jar;C:\Program Files\Java\j2re1.4.2_03\lib\jce.jar;C:\Program Files\Java\j2re1.4.2_03\lib\charsets.jar;C:\Program Files\Java\j2re1.4.2_03\classes, java.vendor=Sun Microsystems Inc., catalina.base=C:\Program Files\Apache Tomcat 4.0, file.separator=\, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, sun.io.unicode.encoding=UnicodeLittle, sun.cpu.endian=little, dialect=net.sf.hibernate.dialect.MySQLDialect, sun.cpu.isalist=pentium i486 i386}
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - processing one-to-many association mappings
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - processing one-to-one association property references
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - processing foreign key constraints
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - resolving reference to class: capgemini.gestionav.modele.valueobject.EmployeDTO
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - resolving reference to class: capgemini.gestionav.modele.valueobject.ClientDTO
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - resolving reference to class: capgemini.gestionav.modele.valueobject.EmployeDTO
10:13 [main] DEBUG net.sf.hibernate.cfg.Configuration - resolving reference to class: capgemini.gestionav.modele.valueobject.OffreDTO
10:13 [main] INFO net.sf.hibernate.dialect.Dialect - Using dialect: net.sf.hibernate.dialect.MySQLDialect
10:13 [main] INFO net.sf.hibernate.cfg.SettingsFactory - Use outer join fetching: false
10:13 [main] INFO net.sf.hibernate.util.NamingHelper - JNDI InitialContext properties:{}
10:13 [main] INFO net.sf.hibernate.connection.DatasourceConnectionProvider - Using datasource: java:comp/env/jdbc/gestionav
10:13 [main] INFO net.sf.hibernate.transaction.TransactionManagerLookupFactory - No TransactionManagerLookup configured (in JTA environment, use of process level read-write cache is not recommended)
10:13 [main] INFO net.sf.hibernate.cfg.SettingsFactory - Use scrollable result sets: true
10:13 [main] INFO net.sf.hibernate.cfg.SettingsFactory - Use JDBC3 getGeneratedKeys(): true
10:13 [main] INFO net.sf.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: false
10:13 [main] INFO net.sf.hibernate.cfg.SettingsFactory - echoing all SQL to stdout
10:13 [main] INFO net.sf.hibernate.cfg.SettingsFactory - Query language substitutions: {}
10:13 [main] INFO net.sf.hibernate.cfg.SettingsFactory - cache provider: net.sf.ehcache.hibernate.Provider
10:13 [main] INFO net.sf.hibernate.cfg.Configuration - instantiating and configuring caches
10:13 [main] INFO net.sf.hibernate.impl.SessionFactoryImpl - building session factory
10:13 [main] DEBUG net.sf.hibernate.impl.SessionFactoryImpl - instantiating session factory with properties: {java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition, sun.boot.library.path=C:\Program Files\Java\j2re1.4.2_03\bin, java.vm.version=1.4.2_03-b02, connection.datasource=java:comp/env/jdbc/gestionav, java.vm.vendor=Sun Microsystems Inc., java.vendor.url=http://java.sun.com/, path.separator=;, java.vm.name=Java HotSpot(TM) Client VM, file.encoding.pkg=sun.io, user.country=US, sun.os.patch.level=Service Pack 4, java.vm.specification.name=Java Virtual Machine Specification, user.dir=C:\Program Files\Eclipse, java.runtime.version=1.4.2_03-b02, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, java.endorsed.dirs=C:\Program Files\Apache Tomcat 4.0\bin;C:\Program Files\Apache Tomcat 4.0\common\lib, os.arch=x86, java.io.tmpdir=C:\DOCUME~1\PTRUSS~1\LOCALS~1\Temp\, line.separator=
, java.vm.specification.vendor=Sun Microsystems Inc., user.variant=, java.naming.factory.url.pkgs=org.apache.naming, os.name=Windows 2000, sun.java2d.fontpath=, hibernate.connection.datasource=java:comp/env/jdbc/gestionav, java.library.path=C:\Program Files\Java\j2re1.4.2_03\bin;.;C:\WINNT\system32;C:\WINNT;C:\Program Files\Documentum\Shared;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;C:\jdk1.3.1_06\bin;C:\Program Files\UltraEdit, java.specification.name=Java Platform API Specification, java.class.version=48.0, java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory, os.version=5.0, user.home=C:\Documents and Settings\ptrussart, user.timezone=Europe/Paris, catalina.useNaming=true, java.awt.printerjob=sun.awt.windows.WPrinterJob, file.encoding=Cp1252, java.specification.version=1.4, show_sql=true, catalina.home=C:\Program Files\Apache Tomcat 4.0, java.class.path=C:\Program Files\Apache Tomcat 4.0\bin\bootstrap.jar;C:\Program Files\Java\j2re1.4.2_03\lib\tools.jar, user.name=ptrussart, hibernate.show_sql=true, java.naming.factory.initial=org.apache.naming.java.javaURLContextFactory, java.vm.specification.version=1.0, java.home=C:\Program Files\Java\j2re1.4.2_03, sun.arch.data.model=32, hibernate.dialect=net.sf.hibernate.dialect.MySQLDialect, user.language=en, java.specification.vendor=Sun Microsystems Inc., awt.toolkit=sun.awt.windows.WToolkit, hibernate.cglib.use_reflection_optimizer=true, java.vm.info=mixed mode, java.version=1.4.2_03, java.ext.dirs=C:\Program Files\Java\j2re1.4.2_03\lib\ext, sun.boot.class.path=C:\Program Files\Apache Tomcat 4.0\bin\bootstrap.jar;C:\Program Files\Apache Tomcat 4.0\common\lib\mysql-connector-java-3.0.14-production-bin.jar;C:\Program Files\Apache Tomcat 4.0\common\lib\naming-common.jar;C:\Program Files\Apache Tomcat 4.0\common\lib\naming-resources.jar;C:\Program Files\Apache Tomcat 4.0\common\lib\servlet.jar;C:\Program Files\Apache Tomcat 4.0\common\lib\tools.jar;C:\Program Files\Java\j2re1.4.2_03\lib\rt.jar;C:\Program Files\Java\j2re1.4.2_03\lib\i18n.jar;C:\Program Files\Java\j2re1.4.2_03\lib\sunrsasign.jar;C:\Program Files\Java\j2re1.4.2_03\lib\jsse.jar;C:\Program Files\Java\j2re1.4.2_03\lib\jce.jar;C:\Program Files\Java\j2re1.4.2_03\lib\charsets.jar;C:\Program Files\Java\j2re1.4.2_03\classes, java.vendor=Sun Microsystems Inc., catalina.base=C:\Program Files\Apache Tomcat 4.0, file.separator=\, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, sun.io.unicode.encoding=UnicodeLittle, sun.cpu.endian=little, dialect=net.sf.hibernate.dialect.MySQLDialect, sun.cpu.isalist=pentium i486 i386}


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 12, 2004 4:29 am 
Senior
Senior

Joined: Fri Nov 21, 2003 5:55 am
Posts: 155
you don't give information about your error?
log is very long but it seems ok, what is your real problem? Your action is unavailable?
Are you sure it's not an war config problem?


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 12, 2004 4:33 am 
Newbie

Joined: Wed Jul 21, 2004 3:58 am
Posts: 17
No ! I don't think this is a war config problem because when when I put the <many-to-one> in comments, tomcat lauch succesfully !

I'm sorry I can't give you more information about the error because Tomcat just say me that my application is not available, like if you type http://localhost:8080/ressourceNotAvailable


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 12, 2004 5:48 am 
Newbie

Joined: Wed Jul 21, 2004 3:58 am
Posts: 17
That's OK i've found a solution !

Two of my object are called aTechnique & aCommercial. If i named it atechnique & acommercial, it work perfectly !
I think i have found a bug !


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 12, 2004 5:50 am 
Hibernate Team
Hibernate Team

Joined: Tue Sep 09, 2003 2:10 pm
Posts: 3246
Location: Passau, Germany
Be sure to understand how Java Bean property names are calculated.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 12, 2004 5:50 am 
Hibernate Team
Hibernate Team

Joined: Tue Aug 26, 2003 12:50 pm
Posts: 5130
Location: Melbourne, Australia
Negative. You have discovered the rules of the JavaBeans spec.

use <property name = "ATechnique"/>


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 12 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.