Problema em gerar Tabela com JPA no Hibernate

Pessoal estou fazendo iniando com JPA e estou usando do Tutorial do Fabio Kung. O problema em questão é quando executo a classe para criar a tabela user no banco de dados não recebo nenhuma mensagem de error e a tabela não é criada no banco de dados.

Segue abaixo a saida da execução da classe que cria a tabela:


23:16:06,843  INFO Version:15 - Hibernate Annotations 3.3.1.GA
23:16:06,874  INFO Environment:514 - Hibernate 3.2.6
23:16:06,874  INFO Environment:547 - hibernate.properties not found
23:16:06,874  INFO Environment:681 - Bytecode provider name : cglib
23:16:06,889  INFO Environment:598 - using JDK 1.4 java.sql.Timestamp handling
23:16:06,983  INFO Version:15 - Hibernate EntityManager 3.3.2.GA
23:16:07,015 DEBUG Ejb3Configuration:209 - Look up for persistence unit: titan
23:16:07,015 DEBUG Ejb3Configuration:221 - Analysing persistence.xml: file:/D:/jupy/Projetos_JPA/jpa-hibernate/bin/META-INF/persistence.xml
23:16:07,452 DEBUG DTDEntityResolver:38 - trying to resolve system-id [http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd]
23:16:07,452 DEBUG EJB3DTDEntityResolver:49 - recognized EJB3 ORM namespace; attempting to resolve on classpath under org/hibernate/ejb
23:16:07,452 DEBUG EJB3DTDEntityResolver:58 - located [http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd] in classpath
23:16:07,577 DEBUG PersistenceXmlLoader:156 - Persistent Unit name from persistence.xml: titan
23:16:07,577 DEBUG Ejb3Configuration:228 - PersistenceMetadata [
	name: titan
	jtaDataSource: null
	nonJtaDataSource: null
	transactionType: RESOURCE_LOCAL
	provider: null
	classes[
	]
	packages[
	]
	mappingFiles[
	]
	jarFiles[
	]
	hbmfiles: 0
	properties[
		hibernate.connection.username: root
		hibernate.connection.password: root
		hibernate.dialect: org.hibernate.dialect.MySQLDialect
		hibernate.connection.url: jdbc:mysql://localhost/titandb
		hibernate.connection.driver_class: com.mysql.jdbc.Driver
		hibernate.format_sql: true
		hibernate.hbm2dll.auto: create
	]]
23:16:07,577 DEBUG JarVisitorFactory:73 - JAR URL from URL Entry: file:/D:/jupy/Projetos_JPA/jpa-hibernate/bin/META-INF/persistence.xml >> file:/D:/jupy/Projetos_JPA/jpa-hibernate/bin/
23:16:07,577 DEBUG Ejb3Configuration:562 - Detect class: true; detect hbm: true
23:16:07,593 DEBUG AbstractJarVisitor:116 - Searching mapped entities in jar/par: file:/D:/jupy/Projetos_JPA/jpa-hibernate/bin/
23:16:07,593 DEBUG AbstractJarVisitor:162 - Filtering: dev.com.titan.domain.Cabin
23:16:07,656 DEBUG AbstractJarVisitor:213 - Java element filter matched for dev.com.titan.domain.Cabin
23:16:07,671 DEBUG AbstractJarVisitor:162 - Filtering: dev.com.titan.domain.GenerateDatabase
23:16:07,671 DEBUG AbstractJarVisitor:162 - Filtering: dev.com.titan.domain.User
23:16:07,671 DEBUG AbstractJarVisitor:213 - Java element filter matched for dev.com.titan.domain.User
23:16:07,671 DEBUG Ejb3Configuration:562 - Detect class: true; detect hbm: true
23:16:07,671 DEBUG Ejb3Configuration:158 - Creating Factory: titan
23:16:07,687 DEBUG AnnotationConfiguration:253 - Execute first pass mapping processing
23:16:07,781 DEBUG AnnotationConfiguration:517 - Process hbm files
23:16:07,781 DEBUG AnnotationConfiguration:525 - Process annotated classes
23:16:07,781  INFO AnnotationBinder:418 - Binding entity from annotated class: dev.com.titan.domain.User
23:16:07,812 DEBUG Ejb3Column:161 - Binding column DTYPE unique false
23:16:07,828 DEBUG EntityBinder:296 - Import with entity name=User
23:16:07,843  INFO EntityBinder:424 - Bind entity dev.com.titan.domain.User on table User
23:16:07,859 DEBUG AnnotationBinder:1022 - Processing dev.com.titan.domain.User property annotation
23:16:07,874 DEBUG AnnotationBinder:1022 - Processing dev.com.titan.domain.User field annotation
23:16:07,874 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.User.id
23:16:07,890 DEBUG Ejb3Column:161 - Binding column id unique false
23:16:07,890 DEBUG AnnotationBinder:1259 - id is an id
23:16:07,890 DEBUG SimpleValueBinder:220 - building SimpleValue for id
23:16:07,906 DEBUG PropertyBinder:129 - Building property id
23:16:07,906 DEBUG PropertyBinder:182 - Cascading id with null
23:16:07,906 DEBUG AnnotationBinder:1296 - Bind @Id on id
23:16:07,906 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.User.login
23:16:07,906 DEBUG Ejb3Column:161 - Binding column login unique false
23:16:07,906 DEBUG PropertyBinder:107 - binding property login with lazy=false
23:16:07,906 DEBUG SimpleValueBinder:220 - building SimpleValue for login
23:16:07,906 DEBUG PropertyBinder:129 - Building property login
23:16:07,906 DEBUG PropertyBinder:182 - Cascading login with null
23:16:07,906 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.User.name
23:16:07,906 DEBUG Ejb3Column:161 - Binding column name unique false
23:16:07,921 DEBUG PropertyBinder:107 - binding property name with lazy=false
23:16:07,921 DEBUG SimpleValueBinder:220 - building SimpleValue for name
23:16:07,921 DEBUG PropertyBinder:129 - Building property name
23:16:07,921 DEBUG PropertyBinder:182 - Cascading name with null
23:16:07,921 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.User.password
23:16:07,921 DEBUG Ejb3Column:161 - Binding column password unique false
23:16:07,921 DEBUG PropertyBinder:107 - binding property password with lazy=false
23:16:07,921 DEBUG SimpleValueBinder:220 - building SimpleValue for password
23:16:07,921 DEBUG PropertyBinder:129 - Building property password
23:16:07,921 DEBUG PropertyBinder:182 - Cascading password with null
23:16:07,921  INFO AnnotationBinder:418 - Binding entity from annotated class: dev.com.titan.domain.Cabin
23:16:07,921 DEBUG Ejb3Column:161 - Binding column DTYPE unique false
23:16:07,921 DEBUG EntityBinder:296 - Import with entity name=Cabin
23:16:07,921  INFO EntityBinder:424 - Bind entity dev.com.titan.domain.Cabin on table Cabin
23:16:07,921 DEBUG AnnotationBinder:1022 - Processing dev.com.titan.domain.Cabin property annotation
23:16:07,937 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.Cabin.id
23:16:07,937 DEBUG Ejb3Column:161 - Binding column ID unique false
23:16:07,937 DEBUG AnnotationBinder:1259 - id is an id
23:16:07,937 DEBUG SimpleValueBinder:220 - building SimpleValue for id
23:16:07,937 DEBUG PropertyBinder:129 - Building property id
23:16:07,937 DEBUG PropertyBinder:182 - Cascading id with null
23:16:07,937 DEBUG AnnotationBinder:1296 - Bind @Id on id
23:16:07,937 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.Cabin.bedCount
23:16:07,937 DEBUG Ejb3Column:161 - Binding column BED_COUNT unique false
23:16:07,937 DEBUG PropertyBinder:107 - binding property bedCount with lazy=false
23:16:07,937 DEBUG SimpleValueBinder:220 - building SimpleValue for bedCount
23:16:07,937 DEBUG PropertyBinder:129 - Building property bedCount
23:16:07,937 DEBUG PropertyBinder:182 - Cascading bedCount with null
23:16:07,937 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.Cabin.deckLevel
23:16:07,937 DEBUG Ejb3Column:161 - Binding column DEC_LEVEL unique false
23:16:07,937 DEBUG PropertyBinder:107 - binding property deckLevel with lazy=false
23:16:07,937 DEBUG SimpleValueBinder:220 - building SimpleValue for deckLevel
23:16:07,937 DEBUG PropertyBinder:129 - Building property deckLevel
23:16:07,937 DEBUG PropertyBinder:182 - Cascading deckLevel with null
23:16:07,937 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.Cabin.name
23:16:07,937 DEBUG Ejb3Column:161 - Binding column NAME unique false
23:16:07,937 DEBUG PropertyBinder:107 - binding property name with lazy=false
23:16:07,937 DEBUG SimpleValueBinder:220 - building SimpleValue for name
23:16:07,937 DEBUG PropertyBinder:129 - Building property name
23:16:07,937 DEBUG PropertyBinder:182 - Cascading name with null
23:16:07,937 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.Cabin.shipId
23:16:07,937 DEBUG Ejb3Column:161 - Binding column SHIP_ID unique false
23:16:07,937 DEBUG PropertyBinder:107 - binding property shipId with lazy=false
23:16:07,953 DEBUG SimpleValueBinder:220 - building SimpleValue for shipId
23:16:07,953 DEBUG PropertyBinder:129 - Building property shipId
23:16:07,953 DEBUG PropertyBinder:182 - Cascading shipId with null
23:16:07,953 DEBUG AnnotationConfiguration:392 - processing fk mappings (*ToOne and JoinedSubclass)
23:16:07,953 DEBUG Configuration:1126 - processing extends queue
23:16:07,953 DEBUG Configuration:1130 - processing collection mappings
23:16:07,953 DEBUG Configuration:1141 - processing native query and ResultSetMapping mappings
23:16:07,953 DEBUG Configuration:1149 - processing association property references
23:16:07,953 DEBUG Configuration:1171 - processing foreign key constraints
23:16:07,953  INFO AnnotationConfiguration:365 - Hibernate Validator not found: ignoring
23:16:07,968 DEBUG NamingHelper:30 - No JNDI name configured for binding Ejb3Configuration
23:16:07,984 DEBUG AnnotationConfiguration:794 - Validator not present in classpath, ignoring event listener registration
23:16:07,984 DEBUG SearchConfiguration:56 - Search not present in classpath, ignoring event listener registration
23:16:07,984 DEBUG Configuration:1291 - Preparing to build session factory with filters : {}
23:16:07,984 DEBUG AnnotationConfiguration:253 - Execute first pass mapping processing
23:16:07,984 DEBUG AnnotationConfiguration:517 - Process hbm files
23:16:07,984 DEBUG AnnotationConfiguration:525 - Process annotated classes
23:16:07,984 DEBUG AnnotationConfiguration:392 - processing fk mappings (*ToOne and JoinedSubclass)
23:16:07,984 DEBUG Configuration:1126 - processing extends queue
23:16:07,984 DEBUG Configuration:1130 - processing collection mappings
23:16:07,984 DEBUG Configuration:1141 - processing native query and ResultSetMapping mappings
23:16:07,984 DEBUG Configuration:1149 - processing association property references
23:16:07,984 DEBUG Configuration:1171 - processing foreign key constraints
23:16:08,078  INFO DriverManagerConnectionProvider:41 - Using Hibernate built-in connection pool (not for production use!)
23:16:08,078  INFO DriverManagerConnectionProvider:42 - Hibernate connection pool size: 20
23:16:08,078  INFO DriverManagerConnectionProvider:45 - autocommit mode: true
23:16:08,078  INFO DriverManagerConnectionProvider:80 - using driver: com.mysql.jdbc.Driver at URL: jdbc:mysql://localhost/titandb
23:16:08,078  INFO DriverManagerConnectionProvider:83 - connection properties: {user=root, password=root, autocommit=true, release_mode=auto}
23:16:08,078 DEBUG DriverManagerConnectionProvider:93 - total checked-out connections: 0
23:16:08,093 DEBUG DriverManagerConnectionProvider:109 - opening new JDBC connection
23:16:08,375 DEBUG DriverManagerConnectionProvider:115 - created connection to: jdbc:mysql://localhost/titandb, Isolation Level: 4
23:16:08,375  INFO SettingsFactory:89 - RDBMS: MySQL, version: 5.0.51a-community-nt
23:16:08,375  INFO SettingsFactory:90 - JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-5.0.5 ( $Date: 2007-03-01 00:01:06 +0100 (Thu, 01 Mar 2007) $, $Revision: 6329 $ )
23:16:08,375 DEBUG DriverManagerConnectionProvider:129 - returning connection to pool, pool size: 1
23:16:08,390  INFO Dialect:152 - Using dialect: org.hibernate.dialect.MySQLDialect
23:16:08,406  INFO TransactionFactoryFactory:34 - Transaction strategy: org.hibernate.transaction.JDBCTransactionFactory
23:16:08,406  INFO TransactionManagerLookupFactory:33 - No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
23:16:08,406  INFO SettingsFactory:143 - Automatic flush during beforeCompletion(): disabled
23:16:08,406  INFO SettingsFactory:147 - Automatic session close at end of transaction: disabled
23:16:08,406  INFO SettingsFactory:154 - JDBC batch size: 15
23:16:08,406  INFO SettingsFactory:157 - JDBC batch updates for versioned data: disabled
23:16:08,406  INFO SettingsFactory:162 - Scrollable result sets: enabled
23:16:08,406 DEBUG SettingsFactory:166 - Wrap result sets: disabled
23:16:08,406  INFO SettingsFactory:170 - JDBC3 getGeneratedKeys(): enabled
23:16:08,406  INFO SettingsFactory:178 - Connection release mode: auto
23:16:08,406  INFO SettingsFactory:202 - Maximum outer join fetch depth: 2
23:16:08,406  INFO SettingsFactory:205 - Default batch fetch size: 1
23:16:08,406  INFO SettingsFactory:209 - Generate SQL with comments: disabled
23:16:08,406  INFO SettingsFactory:213 - Order SQL updates by primary key: disabled
23:16:08,406  INFO SettingsFactory:217 - Order SQL inserts for batching: disabled
23:16:08,406  INFO SettingsFactory:386 - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
23:16:08,422  INFO ASTQueryTranslatorFactory:24 - Using ASTQueryTranslatorFactory
23:16:08,422  INFO SettingsFactory:225 - Query language substitutions: {}
23:16:08,422  INFO SettingsFactory:230 - JPA-QL strict compliance: enabled
23:16:08,422  INFO SettingsFactory:235 - Second-level cache: enabled
23:16:08,422  INFO SettingsFactory:239 - Query cache: disabled
23:16:08,422  INFO SettingsFactory:373 - Cache provider: org.hibernate.cache.NoCacheProvider
23:16:08,422  INFO SettingsFactory:254 - Optimize cache for minimal puts: disabled
23:16:08,422  INFO SettingsFactory:263 - Structured second-level cache entries: disabled
23:16:08,422 DEBUG SQLExceptionConverterFactory:52 - Using dialect defined converter
23:16:08,422  INFO SettingsFactory:290 - Statistics: disabled
23:16:08,422  INFO SettingsFactory:294 - Deleted entity synthetic identifier rollback: disabled
23:16:08,422  INFO SettingsFactory:309 - Default entity-mode: pojo
23:16:08,422  INFO SettingsFactory:313 - Named query checking : enabled
23:16:08,469  INFO SessionFactoryImpl:161 - building session factory
23:16:08,469 DEBUG SessionFactoryImpl:173 - Session factory constructed with filter configurations : {}
23:16:08,469 DEBUG SessionFactoryImpl:177 - instantiating session factory with properties: {java.runtime.name=Java(TM) SE Runtime Environment, hibernate.connection.password=root, sun.boot.library.path=C:\Arquivos de programas\Java\jre1.6.0_05\bin, java.vm.version=10.0-b19, hibernate.connection.username=root, 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=BR, sun.java.launcher=SUN_STANDARD, sun.os.patch.level=Service Pack 2, java.vm.specification.name=Java Virtual Machine Specification, user.dir=D:\jupy\Projetos_JPA\jpa-hibernate, java.runtime.version=1.6.0_05-b13, hibernate.ejb.discard_pc_on_close=false, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, java.endorsed.dirs=C:\Arquivos de programas\Java\jre1.6.0_05\lib\endorsed, os.arch=x86, hibernate.connection.autocommit=true, java.io.tmpdir=C:\DOCUME~1\a0014929\CONFIG~1\Temp\, line.separator=
, java.vm.specification.vendor=Sun Microsystems Inc., user.variant=, os.name=Windows XP, sun.jnu.encoding=Cp1252, java.library.path=C:\Arquivos de programas\Java\jre1.6.0_05\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;D:\jupy\java\jdk1.6.0_03\bin\..\jre\bin\client;D:\jupy\java\jdk1.6.0_03\bin\..\jre\bin;%PATH%;D:\jupy\java\jdk1.6.0_03\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\jupy\xmlbeans-2.3.0\bin;D:\jupy\apache-tomcat-5.5.26\bin;;D:\jupy\php;D:\jupy\MySQL\MySQL Server 5.0\bin;%PATH%;D:\jupy\java\jdk1.6.0_03\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\jupy\xmlbeans-2.3.0\bin;D:\jupy\apache-tomcat-5.5.26\bin;;D:\jupy\php;D:\jupy\MySQL\MySQL Server 5.0\bin;D:\jupy\java\jdk1.6.0_03\bin;D:\jupy\xmlbeans-2.3.0\bin;D:\jupy\apache-tomcat-5.5.26\bin;D:\jupy\php;D:\jupy\jboss-5.0.0.Beta4\bin, java.specification.name=Java Platform API Specification, java.class.version=50.0, sun.management.compiler=HotSpot Client Compiler, hibernate.transaction.factory_class=org.hibernate.transaction.JDBCTransactionFactory, os.version=5.1, user.home=C:\Documents and Settings\a0014929, user.timezone=America/Sao_Paulo, java.awt.printerjob=sun.awt.windows.WPrinterJob, hibernate.connection.release_mode=auto, java.specification.version=1.6, file.encoding=Cp1252, hibernate.format_sql=true, hibernate.connection.driver_class=com.mysql.jdbc.Driver, java.class.path=D:\jupy\Projetos_JPA\jpa-hibernate\bin;D:\jupy\Projetos_JPA\jpa-hibernate\lib\ant-1.6.5.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\ant-antlr-1.6.5.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\ant-junit-1.6.5.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\ant-launcher-1.6.5.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\antlr-2.7.6.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\ant-swing-1.6.5.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\asm.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\asm-attrs.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\c3p0-0.9.1.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\cglib-2.1.3.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\checkstyle-all.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\cleanimports.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\commons-collections-2.1.1.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\commons-logging-1.0.4.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\concurrent-1.3.2.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\dom4j-1.6.1.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\ehcache-1.2.3.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\ejb3-persistence.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\hibernate3.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\hibernate-annotations.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\hibernate-commons-annotations.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\hibernate-entitymanager.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jaas.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jacc-1_0-fr.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\javassist.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jaxen-1.1-beta-7.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jboss-cache.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jboss-common.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jboss-jmx.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jboss-system.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jgroups-2.2.8.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jta.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\junit-3.8.1.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\log4j-1.2.11.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\oscache-2.1.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\proxool-0.8.3.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\swarmcache-1.0rc2.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\syndiag2.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\versioncheck.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\xerces-2.6.2.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\xml-apis.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\mysql-connector-java-5.0.5-bin.jar, user.name=a0014929, hibernate.bytecode.use_reflection_optimizer=false, hibernate.use_identifier_rollback=false, java.vm.specification.version=1.0, sun.arch.data.model=32, java.home=C:\Arquivos de programas\Java\jre1.6.0_05, hibernate.connection.url=jdbc:mysql://localhost/titandb, hibernate.dialect=org.hibernate.dialect.MySQLDialect, java.specification.vendor=Sun Microsystems Inc., user.language=pt, awt.toolkit=sun.awt.windows.WToolkit, java.vm.info=mixed mode, sharing, java.version=1.6.0_05, hibernate.transaction.flush_before_completion=false, java.ext.dirs=C:\Arquivos de programas\Java\jre1.6.0_05\lib\ext;C:\WINDOWS\Sun\Java\lib\ext, sun.boot.class.path=C:\Arquivos de programas\Java\jre1.6.0_05\lib\resources.jar;C:\Arquivos de programas\Java\jre1.6.0_05\lib\rt.jar;C:\Arquivos de programas\Java\jre1.6.0_05\lib\sunrsasign.jar;C:\Arquivos de programas\Java\jre1.6.0_05\lib\jsse.jar;C:\Arquivos de programas\Java\jre1.6.0_05\lib\jce.jar;C:\Arquivos de programas\Java\jre1.6.0_05\lib\charsets.jar;C:\Arquivos de programas\Java\jre1.6.0_05\classes, java.vendor=Sun Microsystems Inc., file.separator=\, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, hibernate.hbm2dll.auto=create, sun.cpu.endian=little, sun.io.unicode.encoding=UnicodeLittle, hibernate.query.jpaql_strict_compliance=true, sun.desktop=windows, sun.cpu.isalist=}
23:16:08,766 DEBUG AbstractEntityPersister:2743 - Static SQL for entity: dev.com.titan.domain.User
23:16:08,766 DEBUG AbstractEntityPersister:2748 -  Version select: select id from User where id =?
23:16:08,766 DEBUG AbstractEntityPersister:2751 -  Snapshot select: select user_.id, user_.login as login0_, user_.name as name0_, user_.password as password0_ from User user_ where user_.id=?
23:16:08,766 DEBUG AbstractEntityPersister:2754 -  Insert 0: insert into User (login, name, password, id) values (?, ?, ?, ?)
23:16:08,766 DEBUG AbstractEntityPersister:2755 -  Update 0: update User set login=?, name=?, password=? where id=?
23:16:08,766 DEBUG AbstractEntityPersister:2756 -  Delete 0: delete from User where id=?
23:16:08,766 DEBUG AbstractEntityPersister:2760 -  Identity insert: insert into User (login, name, password) values (?, ?, ?)
23:16:08,781 DEBUG AbstractEntityPersister:2743 - Static SQL for entity: dev.com.titan.domain.Cabin
23:16:08,781 DEBUG AbstractEntityPersister:2748 -  Version select: select ID from Cabin where ID =?
23:16:08,781 DEBUG AbstractEntityPersister:2751 -  Snapshot select: select cabin_.ID, cabin_.BED_COUNT as BED2_1_, cabin_.DEC_LEVEL as DEC3_1_, cabin_.NAME as NAME1_, cabin_.SHIP_ID as SHIP5_1_ from Cabin cabin_ where cabin_.ID=?
23:16:08,781 DEBUG AbstractEntityPersister:2754 -  Insert 0: insert into Cabin (BED_COUNT, DEC_LEVEL, NAME, SHIP_ID, ID) values (?, ?, ?, ?, ?)
23:16:08,781 DEBUG AbstractEntityPersister:2755 -  Update 0: update Cabin set BED_COUNT=?, DEC_LEVEL=?, NAME=?, SHIP_ID=? where ID=?
23:16:08,781 DEBUG AbstractEntityPersister:2756 -  Delete 0: delete from Cabin where ID=?
23:16:08,781 DEBUG AbstractEntityPersister:2760 -  Identity insert: insert into Cabin (BED_COUNT, DEC_LEVEL, NAME, SHIP_ID) values (?, ?, ?, ?)
23:16:08,813 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.User: select user0_.id as id0_0_, user0_.login as login0_0_, user0_.name as name0_0_, user0_.password as password0_0_ from User user0_ where user0_.id=?
23:16:08,813 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.User: select user0_.id as id0_0_, user0_.login as login0_0_, user0_.name as name0_0_, user0_.password as password0_0_ from User user0_ where user0_.id=?
23:16:08,813 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.User: select user0_.id as id0_0_, user0_.login as login0_0_, user0_.name as name0_0_, user0_.password as password0_0_ from User user0_ where user0_.id=? for update
23:16:08,813 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.User: select user0_.id as id0_0_, user0_.login as login0_0_, user0_.name as name0_0_, user0_.password as password0_0_ from User user0_ where user0_.id=? for update
23:16:08,813 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.User: select user0_.id as id0_0_, user0_.login as login0_0_, user0_.name as name0_0_, user0_.password as password0_0_ from User user0_ where user0_.id=? for update
23:16:08,828 DEBUG EntityLoader:34 - Static select for action ACTION_MERGE on entity dev.com.titan.domain.User: select user0_.id as id0_0_, user0_.login as login0_0_, user0_.name as name0_0_, user0_.password as password0_0_ from User user0_ where user0_.id=?
23:16:08,828 DEBUG EntityLoader:34 - Static select for action ACTION_REFRESH on entity dev.com.titan.domain.User: select user0_.id as id0_0_, user0_.login as login0_0_, user0_.name as name0_0_, user0_.password as password0_0_ from User user0_ where user0_.id=?
23:16:08,828 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.Cabin: select cabin0_.ID as ID1_0_, cabin0_.BED_COUNT as BED2_1_0_, cabin0_.DEC_LEVEL as DEC3_1_0_, cabin0_.NAME as NAME1_0_, cabin0_.SHIP_ID as SHIP5_1_0_ from Cabin cabin0_ where cabin0_.ID=?
23:16:08,828 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.Cabin: select cabin0_.ID as ID1_0_, cabin0_.BED_COUNT as BED2_1_0_, cabin0_.DEC_LEVEL as DEC3_1_0_, cabin0_.NAME as NAME1_0_, cabin0_.SHIP_ID as SHIP5_1_0_ from Cabin cabin0_ where cabin0_.ID=?
23:16:08,828 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.Cabin: select cabin0_.ID as ID1_0_, cabin0_.BED_COUNT as BED2_1_0_, cabin0_.DEC_LEVEL as DEC3_1_0_, cabin0_.NAME as NAME1_0_, cabin0_.SHIP_ID as SHIP5_1_0_ from Cabin cabin0_ where cabin0_.ID=? for update
23:16:08,828 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.Cabin: select cabin0_.ID as ID1_0_, cabin0_.BED_COUNT as BED2_1_0_, cabin0_.DEC_LEVEL as DEC3_1_0_, cabin0_.NAME as NAME1_0_, cabin0_.SHIP_ID as SHIP5_1_0_ from Cabin cabin0_ where cabin0_.ID=? for update
23:16:08,828 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.Cabin: select cabin0_.ID as ID1_0_, cabin0_.BED_COUNT as BED2_1_0_, cabin0_.DEC_LEVEL as DEC3_1_0_, cabin0_.NAME as NAME1_0_, cabin0_.SHIP_ID as SHIP5_1_0_ from Cabin cabin0_ where cabin0_.ID=? for update
23:16:08,828 DEBUG EntityLoader:34 - Static select for action ACTION_MERGE on entity dev.com.titan.domain.Cabin: select cabin0_.ID as ID1_0_, cabin0_.BED_COUNT as BED2_1_0_, cabin0_.DEC_LEVEL as DEC3_1_0_, cabin0_.NAME as NAME1_0_, cabin0_.SHIP_ID as SHIP5_1_0_ from Cabin cabin0_ where cabin0_.ID=?
23:16:08,828 DEBUG EntityLoader:34 - Static select for action ACTION_REFRESH on entity dev.com.titan.domain.Cabin: select cabin0_.ID as ID1_0_, cabin0_.BED_COUNT as BED2_1_0_, cabin0_.DEC_LEVEL as DEC3_1_0_, cabin0_.NAME as NAME1_0_, cabin0_.SHIP_ID as SHIP5_1_0_ from Cabin cabin0_ where cabin0_.ID=?
23:16:08,828 DEBUG SessionFactoryObjectFactory:39 - initializing class SessionFactoryObjectFactory
23:16:08,828 DEBUG SessionFactoryObjectFactory:76 - registered: 8a00d0d019ac909c0119ac909d7c0000 (unnamed)
23:16:08,828  INFO SessionFactoryObjectFactory:82 - Not binding factory to JNDI, no JNDI name configured
23:16:08,828 DEBUG SessionFactoryImpl:308 - instantiated session factory
23:16:08,828 DEBUG SessionFactoryImpl:392 - Checking 0 named HQL queries
23:16:08,828 DEBUG SessionFactoryImpl:412 - Checking 0 named SQL queries
23:16:08,906 DEBUG SessionImpl:220 - opened session at timestamp: 12097809688
23:16:08,906 DEBUG SessionImpl:273 - closing session
23:16:08,906 DEBUG ConnectionManager:375 - connection already null in cleanup : no action
23:16:08,906  INFO SessionFactoryImpl:769 - closing
23:16:08,906  INFO DriverManagerConnectionProvider:147 - cleaning up connection pool: jdbc:mysql://localhost/titandb

Alguém pode me ajudar !!!

s

Jupy

galera segue abaixo a saida que não estava no outro Post:

23:16:06,843 INFO Version:15 - Hibernate Annotations 3.3.1.GA
23:16:06,874 INFO Environment:514 - Hibernate 3.2.6
23:16:06,874 INFO Environment:547 - hibernate.properties not found
23:16:06,874 INFO Environment:681 - Bytecode provider name : cglib
23:16:06,889 INFO Environment:598 - using JDK 1.4 java.sql.Timestamp handling
23:16:06,983 INFO Version:15 - Hibernate EntityManager 3.3.2.GA
23:16:07,015 DEBUG Ejb3Configuration:209 - Look up for persistence unit: titan
23:16:07,015 DEBUG Ejb3Configuration:221 - Analysing persistence.xml: file:/D:/jupy/Projetos_JPA/jpa-hibernate/bin/META-INF/persistence.xml
23:16:07,452 DEBUG DTDEntityResolver:38 - trying to resolve system-id [http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd]
23:16:07,452 DEBUG EJB3DTDEntityResolver:49 - recognized EJB3 ORM namespace; attempting to resolve on classpath under org/hibernate/ejb
23:16:07,452 DEBUG EJB3DTDEntityResolver:58 - located [http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd] in classpath
23:16:07,577 DEBUG PersistenceXmlLoader:156 - Persistent Unit name from persistence.xml: titan
23:16:07,577 DEBUG Ejb3Configuration:228 - PersistenceMetadata [
name: titan
jtaDataSource: null
nonJtaDataSource: null
transactionType: RESOURCE_LOCAL
provider: null
classes[
]
packages[
]
mappingFiles[
]
jarFiles[
]
hbmfiles: 0
properties[
hibernate.connection.username: root
hibernate.connection.password: root
hibernate.dialect: org.hibernate.dialect.MySQLDialect
hibernate.connection.url: jdbc:mysql://localhost/titandb
hibernate.connection.driver_class: com.mysql.jdbc.Driver
hibernate.format_sql: true
hibernate.hbm2dll.auto: create
]]
23:16:07,577 DEBUG JarVisitorFactory:73 - JAR URL from URL Entry: file:/D:/jupy/Projetos_JPA/jpa-hibernate/bin/META-INF/persistence.xml >> file:/D:/jupy/Projetos_JPA/jpa-hibernate/bin/
23:16:07,577 DEBUG Ejb3Configuration:562 - Detect class: true; detect hbm: true
23:16:07,593 DEBUG AbstractJarVisitor:116 - Searching mapped entities in jar/par: file:/D:/jupy/Projetos_JPA/jpa-hibernate/bin/
23:16:07,593 DEBUG AbstractJarVisitor:162 - Filtering: dev.com.titan.domain.Cabin
23:16:07,656 DEBUG AbstractJarVisitor:213 - Java element filter matched for dev.com.titan.domain.Cabin
23:16:07,671 DEBUG AbstractJarVisitor:162 - Filtering: dev.com.titan.domain.GenerateDatabase
23:16:07,671 DEBUG AbstractJarVisitor:162 - Filtering: dev.com.titan.domain.User
23:16:07,671 DEBUG AbstractJarVisitor:213 - Java element filter matched for dev.com.titan.domain.User
23:16:07,671 DEBUG Ejb3Configuration:562 - Detect class: true; detect hbm: true
23:16:07,671 DEBUG Ejb3Configuration:158 - Creating Factory: titan
23:16:07,687 DEBUG AnnotationConfiguration:253 - Execute first pass mapping processing
23:16:07,781 DEBUG AnnotationConfiguration:517 - Process hbm files
23:16:07,781 DEBUG AnnotationConfiguration:525 - Process annotated classes
23:16:07,781 INFO AnnotationBinder:418 - Binding entity from annotated class: dev.com.titan.domain.User
23:16:07,812 DEBUG Ejb3Column:161 - Binding column DTYPE unique false
23:16:07,828 DEBUG EntityBinder:296 - Import with entity name=User
23:16:07,843 INFO EntityBinder:424 - Bind entity dev.com.titan.domain.User on table User
23:16:07,859 DEBUG AnnotationBinder:1022 - Processing dev.com.titan.domain.User property annotation
23:16:07,874 DEBUG AnnotationBinder:1022 - Processing dev.com.titan.domain.User field annotation
23:16:07,874 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.User.id
23:16:07,890 DEBUG Ejb3Column:161 - Binding column id unique false
23:16:07,890 DEBUG AnnotationBinder:1259 - id is an id
23:16:07,890 DEBUG SimpleValueBinder:220 - building SimpleValue for id
23:16:07,906 DEBUG PropertyBinder:129 - Building property id
23:16:07,906 DEBUG PropertyBinder:182 - Cascading id with null
23:16:07,906 DEBUG AnnotationBinder:1296 - Bind @Id on id
23:16:07,906 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.User.login
23:16:07,906 DEBUG Ejb3Column:161 - Binding column login unique false
23:16:07,906 DEBUG PropertyBinder:107 - binding property login with lazy=false
23:16:07,906 DEBUG SimpleValueBinder:220 - building SimpleValue for login
23:16:07,906 DEBUG PropertyBinder:129 - Building property login
23:16:07,906 DEBUG PropertyBinder:182 - Cascading login with null
23:16:07,906 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.User.name
23:16:07,906 DEBUG Ejb3Column:161 - Binding column name unique false
23:16:07,921 DEBUG PropertyBinder:107 - binding property name with lazy=false
23:16:07,921 DEBUG SimpleValueBinder:220 - building SimpleValue for name
23:16:07,921 DEBUG PropertyBinder:129 - Building property name
23:16:07,921 DEBUG PropertyBinder:182 - Cascading name with null
23:16:07,921 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.User.password
23:16:07,921 DEBUG Ejb3Column:161 - Binding column password unique false
23:16:07,921 DEBUG PropertyBinder:107 - binding property password with lazy=false
23:16:07,921 DEBUG SimpleValueBinder:220 - building SimpleValue for password
23:16:07,921 DEBUG PropertyBinder:129 - Building property password
23:16:07,921 DEBUG PropertyBinder:182 - Cascading password with null
23:16:07,921 INFO AnnotationBinder:418 - Binding entity from annotated class: dev.com.titan.domain.Cabin
23:16:07,921 DEBUG Ejb3Column:161 - Binding column DTYPE unique false
23:16:07,921 DEBUG EntityBinder:296 - Import with entity name=Cabin
23:16:07,921 INFO EntityBinder:424 - Bind entity dev.com.titan.domain.Cabin on table Cabin
23:16:07,921 DEBUG AnnotationBinder:1022 - Processing dev.com.titan.domain.Cabin property annotation
23:16:07,937 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.Cabin.id
23:16:07,937 DEBUG Ejb3Column:161 - Binding column ID unique false
23:16:07,937 DEBUG AnnotationBinder:1259 - id is an id
23:16:07,937 DEBUG SimpleValueBinder:220 - building SimpleValue for id
23:16:07,937 DEBUG PropertyBinder:129 - Building property id
23:16:07,937 DEBUG PropertyBinder:182 - Cascading id with null
23:16:07,937 DEBUG AnnotationBinder:1296 - Bind @Id on id
23:16:07,937 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.Cabin.bedCount
23:16:07,937 DEBUG Ejb3Column:161 - Binding column BED_COUNT unique false
23:16:07,937 DEBUG PropertyBinder:107 - binding property bedCount with lazy=false
23:16:07,937 DEBUG SimpleValueBinder:220 - building SimpleValue for bedCount
23:16:07,937 DEBUG PropertyBinder:129 - Building property bedCount
23:16:07,937 DEBUG PropertyBinder:182 - Cascading bedCount with null
23:16:07,937 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.Cabin.deckLevel
23:16:07,937 DEBUG Ejb3Column:161 - Binding column DEC_LEVEL unique false
23:16:07,937 DEBUG PropertyBinder:107 - binding property deckLevel with lazy=false
23:16:07,937 DEBUG SimpleValueBinder:220 - building SimpleValue for deckLevel
23:16:07,937 DEBUG PropertyBinder:129 - Building property deckLevel
23:16:07,937 DEBUG PropertyBinder:182 - Cascading deckLevel with null
23:16:07,937 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.Cabin.name
23:16:07,937 DEBUG Ejb3Column:161 - Binding column NAME unique false
23:16:07,937 DEBUG PropertyBinder:107 - binding property name with lazy=false
23:16:07,937 DEBUG SimpleValueBinder:220 - building SimpleValue for name
23:16:07,937 DEBUG PropertyBinder:129 - Building property name
23:16:07,937 DEBUG PropertyBinder:182 - Cascading name with null
23:16:07,937 DEBUG AnnotationBinder:1134 - Processing annotations of dev.com.titan.domain.Cabin.shipId
23:16:07,937 DEBUG Ejb3Column:161 - Binding column SHIP_ID unique false
23:16:07,937 DEBUG PropertyBinder:107 - binding property shipId with lazy=false
23:16:07,953 DEBUG SimpleValueBinder:220 - building SimpleValue for shipId
23:16:07,953 DEBUG PropertyBinder:129 - Building property shipId
23:16:07,953 DEBUG PropertyBinder:182 - Cascading shipId with null
23:16:07,953 DEBUG AnnotationConfiguration:392 - processing fk mappings (*ToOne and JoinedSubclass)
23:16:07,953 DEBUG Configuration:1126 - processing extends queue
23:16:07,953 DEBUG Configuration:1130 - processing collection mappings
23:16:07,953 DEBUG Configuration:1141 - processing native query and ResultSetMapping mappings
23:16:07,953 DEBUG Configuration:1149 - processing association property references
23:16:07,953 DEBUG Configuration:1171 - processing foreign key constraints
23:16:07,953 INFO AnnotationConfiguration:365 - Hibernate Validator not found: ignoring
23:16:07,968 DEBUG NamingHelper:30 - No JNDI name configured for binding Ejb3Configuration
23:16:07,984 DEBUG AnnotationConfiguration:794 - Validator not present in classpath, ignoring event listener registration
23:16:07,984 DEBUG SearchConfiguration:56 - Search not present in classpath, ignoring event listener registration
23:16:07,984 DEBUG Configuration:1291 - Preparing to build session factory with filters : {}
23:16:07,984 DEBUG AnnotationConfiguration:253 - Execute first pass mapping processing
23:16:07,984 DEBUG AnnotationConfiguration:517 - Process hbm files
23:16:07,984 DEBUG AnnotationConfiguration:525 - Process annotated classes
23:16:07,984 DEBUG AnnotationConfiguration:392 - processing fk mappings (*ToOne and JoinedSubclass)
23:16:07,984 DEBUG Configuration:1126 - processing extends queue
23:16:07,984 DEBUG Configuration:1130 - processing collection mappings
23:16:07,984 DEBUG Configuration:1141 - processing native query and ResultSetMapping mappings
23:16:07,984 DEBUG Configuration:1149 - processing association property references
23:16:07,984 DEBUG Configuration:1171 - processing foreign key constraints
23:16:08,078 INFO DriverManagerConnectionProvider:41 - Using Hibernate built-in connection pool (not for production use!)
23:16:08,078 INFO DriverManagerConnectionProvider:42 - Hibernate connection pool size: 20
23:16:08,078 INFO DriverManagerConnectionProvider:45 - autocommit mode: true
23:16:08,078 INFO DriverManagerConnectionProvider:80 - using driver: com.mysql.jdbc.Driver at URL: jdbc:mysql://localhost/titandb
23:16:08,078 INFO DriverManagerConnectionProvider:83 - connection properties: {user=root, password=root, autocommit=true, release_mode=auto}
23:16:08,078 DEBUG DriverManagerConnectionProvider:93 - total checked-out connections: 0
23:16:08,093 DEBUG DriverManagerConnectionProvider:109 - opening new JDBC connection
23:16:08,375 DEBUG DriverManagerConnectionProvider:115 - created connection to: jdbc:mysql://localhost/titandb, Isolation Level: 4
23:16:08,375 INFO SettingsFactory:89 - RDBMS: MySQL, version: 5.0.51a-community-nt
23:16:08,375 INFO SettingsFactory:90 - JDBC driver: MySQL-AB JDBC Driver, version: mysql-connector-java-5.0.5 ( $Date: 2007-03-01 00:01:06 +0100 (Thu, 01 Mar 2007) $, $Revision: 6329 $ )
23:16:08,375 DEBUG DriverManagerConnectionProvider:129 - returning connection to pool, pool size: 1
23:16:08,390 INFO Dialect:152 - Using dialect: org.hibernate.dialect.MySQLDialect
23:16:08,406 INFO TransactionFactoryFactory:34 - Transaction strategy: org.hibernate.transaction.JDBCTransactionFactory
23:16:08,406 INFO TransactionManagerLookupFactory:33 - No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
23:16:08,406 INFO SettingsFactory:143 - Automatic flush during beforeCompletion(): disabled
23:16:08,406 INFO SettingsFactory:147 - Automatic session close at end of transaction: disabled
23:16:08,406 INFO SettingsFactory:154 - JDBC batch size: 15
23:16:08,406 INFO SettingsFactory:157 - JDBC batch updates for versioned data: disabled
23:16:08,406 INFO SettingsFactory:162 - Scrollable result sets: enabled
23:16:08,406 DEBUG SettingsFactory:166 - Wrap result sets: disabled
23:16:08,406 INFO SettingsFactory:170 - JDBC3 getGeneratedKeys(): enabled
23:16:08,406 INFO SettingsFactory:178 - Connection release mode: auto
23:16:08,406 INFO SettingsFactory:202 - Maximum outer join fetch depth: 2
23:16:08,406 INFO SettingsFactory:205 - Default batch fetch size: 1
23:16:08,406 INFO SettingsFactory:209 - Generate SQL with comments: disabled
23:16:08,406 INFO SettingsFactory:213 - Order SQL updates by primary key: disabled
23:16:08,406 INFO SettingsFactory:217 - Order SQL inserts for batching: disabled
23:16:08,406 INFO SettingsFactory:386 - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
23:16:08,422 INFO ASTQueryTranslatorFactory:24 - Using ASTQueryTranslatorFactory
23:16:08,422 INFO SettingsFactory:225 - Query language substitutions: {}
23:16:08,422 INFO SettingsFactory:230 - JPA-QL strict compliance: enabled
23:16:08,422 INFO SettingsFactory:235 - Second-level cache: enabled
23:16:08,422 INFO SettingsFactory:239 - Query cache: disabled
23:16:08,422 INFO SettingsFactory:373 - Cache provider: org.hibernate.cache.NoCacheProvider
23:16:08,422 INFO SettingsFactory:254 - Optimize cache for minimal puts: disabled
23:16:08,422 INFO SettingsFactory:263 - Structured second-level cache entries: disabled
23:16:08,422 DEBUG SQLExceptionConverterFactory:52 - Using dialect defined converter
23:16:08,422 INFO SettingsFactory:290 - Statistics: disabled
23:16:08,422 INFO SettingsFactory:294 - Deleted entity synthetic identifier rollback: disabled
23:16:08,422 INFO SettingsFactory:309 - Default entity-mode: pojo
23:16:08,422 INFO SettingsFactory:313 - Named query checking : enabled
23:16:08,469 INFO SessionFactoryImpl:161 - building session factory
23:16:08,469 DEBUG SessionFactoryImpl:173 - Session factory constructed with filter configurations : {}
23:16:08,469 DEBUG SessionFactoryImpl:177 - instantiating session factory with properties: {java.runtime.name=Java™ SE Runtime Environment, hibernate.connection.password=root, sun.boot.library.path=C:\Arquivos de programas\Java\jre1.6.0_05\bin, java.vm.version=10.0-b19, hibernate.connection.username=root, java.vm.vendor=Sun Microsystems Inc., java.vendor.url=http://java.sun.com/, path.separator=;, java.vm.name=Java HotSpot™ Client VM, file.encoding.pkg=sun.io, user.country=BR, sun.java.launcher=SUN_STANDARD, sun.os.patch.level=Service Pack 2, java.vm.specification.name=Java Virtual Machine Specification, user.dir=D:\jupy\Projetos_JPA\jpa-hibernate, java.runtime.version=1.6.0_05-b13, hibernate.ejb.discard_pc_on_close=false, java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment, java.endorsed.dirs=C:\Arquivos de programas\Java\jre1.6.0_05\lib\endorsed, os.arch=x86, hibernate.connection.autocommit=true, java.io.tmpdir=C:\DOCUME~1\a0014929\CONFIG~1\Temp, line.separator=
, java.vm.specification.vendor=Sun Microsystems Inc., user.variant=, os.name=Windows XP, sun.jnu.encoding=Cp1252, java.library.path=C:\Arquivos de programas\Java\jre1.6.0_05\bin;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;D:\jupy\java\jdk1.6.0_03\bin…\jre\bin\client;D:\jupy\java\jdk1.6.0_03\bin…\jre\bin;%PATH%;D:\jupy\java\jdk1.6.0_03\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\jupy\xmlbeans-2.3.0\bin;D:\jupy\apache-tomcat-5.5.26\bin;;D:\jupy\php;D:\jupy\MySQL\MySQL Server 5.0\bin;%PATH%;D:\jupy\java\jdk1.6.0_03\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\jupy\xmlbeans-2.3.0\bin;D:\jupy\apache-tomcat-5.5.26\bin;;D:\jupy\php;D:\jupy\MySQL\MySQL Server 5.0\bin;D:\jupy\java\jdk1.6.0_03\bin;D:\jupy\xmlbeans-2.3.0\bin;D:\jupy\apache-tomcat-5.5.26\bin;D:\jupy\php;D:\jupy\jboss-5.0.0.Beta4\bin, java.specification.name=Java Platform API Specification, java.class.version=50.0, sun.management.compiler=HotSpot Client Compiler, hibernate.transaction.factory_class=org.hibernate.transaction.JDBCTransactionFactory, os.version=5.1, user.home=C:\Documents and Settings\a0014929, user.timezone=America/Sao_Paulo, java.awt.printerjob=sun.awt.windows.WPrinterJob, hibernate.connection.release_mode=auto, java.specification.version=1.6, file.encoding=Cp1252, hibernate.format_sql=true, hibernate.connection.driver_class=com.mysql.jdbc.Driver, java.class.path=D:\jupy\Projetos_JPA\jpa-hibernate\bin;D:\jupy\Projetos_JPA\jpa-hibernate\lib\ant-1.6.5.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\ant-antlr-1.6.5.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\ant-junit-1.6.5.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\ant-launcher-1.6.5.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\antlr-2.7.6.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\ant-swing-1.6.5.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\asm.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\asm-attrs.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\c3p0-0.9.1.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\cglib-2.1.3.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\checkstyle-all.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\cleanimports.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\commons-collections-2.1.1.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\commons-logging-1.0.4.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\concurrent-1.3.2.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\dom4j-1.6.1.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\ehcache-1.2.3.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\ejb3-persistence.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\hibernate3.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\hibernate-annotations.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\hibernate-commons-annotations.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\hibernate-entitymanager.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jaas.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jacc-1_0-fr.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\javassist.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jaxen-1.1-beta-7.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jboss-cache.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jboss-common.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jboss-jmx.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jboss-system.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jgroups-2.2.8.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\jta.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\junit-3.8.1.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\log4j-1.2.11.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\oscache-2.1.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\proxool-0.8.3.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\swarmcache-1.0rc2.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\syndiag2.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\versioncheck.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\xerces-2.6.2.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\xml-apis.jar;D:\jupy\Projetos_JPA\jpa-hibernate\lib\mysql-connector-java-5.0.5-bin.jar, user.name=a0014929, hibernate.bytecode.use_reflection_optimizer=false, hibernate.use_identifier_rollback=false, java.vm.specification.version=1.0, sun.arch.data.model=32, java.home=C:\Arquivos de programas\Java\jre1.6.0_05, hibernate.connection.url=jdbc:mysql://localhost/titandb, hibernate.dialect=org.hibernate.dialect.MySQLDialect, java.specification.vendor=Sun Microsystems Inc., user.language=pt, awt.toolkit=sun.awt.windows.WToolkit, java.vm.info=mixed mode, sharing, java.version=1.6.0_05, hibernate.transaction.flush_before_completion=false, java.ext.dirs=C:\Arquivos de programas\Java\jre1.6.0_05\lib\ext;C:\WINDOWS\Sun\Java\lib\ext, sun.boot.class.path=C:\Arquivos de programas\Java\jre1.6.0_05\lib\resources.jar;C:\Arquivos de programas\Java\jre1.6.0_05\lib\rt.jar;C:\Arquivos de programas\Java\jre1.6.0_05\lib\sunrsasign.jar;C:\Arquivos de programas\Java\jre1.6.0_05\lib\jsse.jar;C:\Arquivos de programas\Java\jre1.6.0_05\lib\jce.jar;C:\Arquivos de programas\Java\jre1.6.0_05\lib\charsets.jar;C:\Arquivos de programas\Java\jre1.6.0_05\classes, java.vendor=Sun Microsystems Inc., file.separator=, java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi, hibernate.hbm2dll.auto=create, sun.cpu.endian=little, sun.io.unicode.encoding=UnicodeLittle, hibernate.query.jpaql_strict_compliance=true, sun.desktop=windows, sun.cpu.isalist=}
23:16:08,766 DEBUG AbstractEntityPersister:2743 - Static SQL for entity: dev.com.titan.domain.User
23:16:08,766 DEBUG AbstractEntityPersister:2748 - Version select: select id from User where id =?
23:16:08,766 DEBUG AbstractEntityPersister:2751 - Snapshot select: select user_.id, user_.login as login0_, user_.name as name0_, user_.password as password0_ from User user_ where user_.id=?
23:16:08,766 DEBUG AbstractEntityPersister:2754 - Insert 0: insert into User (login, name, password, id) values (?, ?, ?, ?)
23:16:08,766 DEBUG AbstractEntityPersister:2755 - Update 0: update User set login=?, name=?, password=? where id=?
23:16:08,766 DEBUG AbstractEntityPersister:2756 - Delete 0: delete from User where id=?
23:16:08,766 DEBUG AbstractEntityPersister:2760 - Identity insert: insert into User (login, name, password) values (?, ?, ?)
23:16:08,781 DEBUG AbstractEntityPersister:2743 - Static SQL for entity: dev.com.titan.domain.Cabin
23:16:08,781 DEBUG AbstractEntityPersister:2748 - Version select: select ID from Cabin where ID =?
23:16:08,781 DEBUG AbstractEntityPersister:2751 - Snapshot select: select cabin_.ID, cabin_.BED_COUNT as BED2_1_, cabin_.DEC_LEVEL as DEC3_1_, cabin_.NAME as NAME1_, cabin_.SHIP_ID as SHIP5_1_ from Cabin cabin_ where cabin_.ID=?
23:16:08,781 DEBUG AbstractEntityPersister:2754 - Insert 0: insert into Cabin (BED_COUNT, DEC_LEVEL, NAME, SHIP_ID, ID) values (?, ?, ?, ?, ?)
23:16:08,781 DEBUG AbstractEntityPersister:2755 - Update 0: update Cabin set BED_COUNT=?, DEC_LEVEL=?, NAME=?, SHIP_ID=? where ID=?
23:16:08,781 DEBUG AbstractEntityPersister:2756 - Delete 0: delete from Cabin where ID=?
23:16:08,781 DEBUG AbstractEntityPersister:2760 - Identity insert: insert into Cabin (BED_COUNT, DEC_LEVEL, NAME, SHIP_ID) values (?, ?, ?, ?)
23:16:08,813 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.User: select user0_.id as id0_0_, user0_.login as login0_0_, user0_.name as name0_0_, user0_.password as password0_0_ from User user0_ where user0_.id=?
23:16:08,813 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.User: select user0_.id as id0_0_, user0_.login as login0_0_, user0_.name as name0_0_, user0_.password as password0_0_ from User user0_ where user0_.id=?
23:16:08,813 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.User: select user0_.id as id0_0_, user0_.login as login0_0_, user0_.name as name0_0_, user0_.password as password0_0_ from User user0_ where user0_.id=? for update
23:16:08,813 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.User: select user0_.id as id0_0_, user0_.login as login0_0_, user0_.name as name0_0_, user0_.password as password0_0_ from User user0_ where user0_.id=? for update
23:16:08,813 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.User: select user0_.id as id0_0_, user0_.login as login0_0_, user0_.name as name0_0_, user0_.password as password0_0_ from User user0_ where user0_.id=? for update
23:16:08,828 DEBUG EntityLoader:34 - Static select for action ACTION_MERGE on entity dev.com.titan.domain.User: select user0_.id as id0_0_, user0_.login as login0_0_, user0_.name as name0_0_, user0_.password as password0_0_ from User user0_ where user0_.id=?
23:16:08,828 DEBUG EntityLoader:34 - Static select for action ACTION_REFRESH on entity dev.com.titan.domain.User: select user0_.id as id0_0_, user0_.login as login0_0_, user0_.name as name0_0_, user0_.password as password0_0_ from User user0_ where user0_.id=?
23:16:08,828 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.Cabin: select cabin0_.ID as ID1_0_, cabin0_.BED_COUNT as BED2_1_0_, cabin0_.DEC_LEVEL as DEC3_1_0_, cabin0_.NAME as NAME1_0_, cabin0_.SHIP_ID as SHIP5_1_0_ from Cabin cabin0_ where cabin0_.ID=?
23:16:08,828 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.Cabin: select cabin0_.ID as ID1_0_, cabin0_.BED_COUNT as BED2_1_0_, cabin0_.DEC_LEVEL as DEC3_1_0_, cabin0_.NAME as NAME1_0_, cabin0_.SHIP_ID as SHIP5_1_0_ from Cabin cabin0_ where cabin0_.ID=?
23:16:08,828 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.Cabin: select cabin0_.ID as ID1_0_, cabin0_.BED_COUNT as BED2_1_0_, cabin0_.DEC_LEVEL as DEC3_1_0_, cabin0_.NAME as NAME1_0_, cabin0_.SHIP_ID as SHIP5_1_0_ from Cabin cabin0_ where cabin0_.ID=? for update
23:16:08,828 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.Cabin: select cabin0_.ID as ID1_0_, cabin0_.BED_COUNT as BED2_1_0_, cabin0_.DEC_LEVEL as DEC3_1_0_, cabin0_.NAME as NAME1_0_, cabin0_.SHIP_ID as SHIP5_1_0_ from Cabin cabin0_ where cabin0_.ID=? for update
23:16:08,828 DEBUG EntityLoader:79 - Static select for entity dev.com.titan.domain.Cabin: select cabin0_.ID as ID1_0_, cabin0_.BED_COUNT as BED2_1_0_, cabin0_.DEC_LEVEL as DEC3_1_0_, cabin0_.NAME as NAME1_0_, cabin0_.SHIP_ID as SHIP5_1_0_ from Cabin cabin0_ where cabin0_.ID=? for update
23:16:08,828 DEBUG EntityLoader:34 - Static select for action ACTION_MERGE on entity dev.com.titan.domain.Cabin: select cabin0_.ID as ID1_0_, cabin0_.BED_COUNT as BED2_1_0_, cabin0_.DEC_LEVEL as DEC3_1_0_, cabin0_.NAME as NAME1_0_, cabin0_.SHIP_ID as SHIP5_1_0_ from Cabin cabin0_ where cabin0_.ID=?
23:16:08,828 DEBUG EntityLoader:34 - Static select for action ACTION_REFRESH on entity dev.com.titan.domain.Cabin: select cabin0_.ID as ID1_0_, cabin0_.BED_COUNT as BED2_1_0_, cabin0_.DEC_LEVEL as DEC3_1_0_, cabin0_.NAME as NAME1_0_, cabin0_.SHIP_ID as SHIP5_1_0_ from Cabin cabin0_ where cabin0_.ID=?
23:16:08,828 DEBUG SessionFactoryObjectFactory:39 - initializing class SessionFactoryObjectFactory
23:16:08,828 DEBUG SessionFactoryObjectFactory:76 - registered: 8a00d0d019ac909c0119ac909d7c0000 (unnamed)
23:16:08,828 INFO SessionFactoryObjectFactory:82 - Not binding factory to JNDI, no JNDI name configured
23:16:08,828 DEBUG SessionFactoryImpl:308 - instantiated session factory
23:16:08,828 DEBUG SessionFactoryImpl:392 - Checking 0 named HQL queries
23:16:08,828 DEBUG SessionFactoryImpl:412 - Checking 0 named SQL queries
23:16:08,906 DEBUG SessionImpl:220 - opened session at timestamp: 12097809688
23:16:08,906 DEBUG SessionImpl:273 - closing session
23:16:08,906 DEBUG ConnectionManager:375 - connection already null in cleanup : no action
23:16:08,906 INFO SessionFactoryImpl:769 - closing
23:16:08,906 INFO DriverManagerConnectionProvider:147 - cleaning up connection pool: jdbc:mysql://localhost/titandb