Phoenix One Discussions
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Hibernate Error Message Cont...

2 posters

Go down

Hibernate Error Message Cont... Empty Hibernate Error Message Cont...

Post  hardy Tue Oct 27, 2009 11:52 pm

26 [main] INFO org.hibernate.cfg.Environment - Hibernate 3.3.2.GA
39 [main] INFO org.hibernate.cfg.Environment - hibernate.properties not found
45 [main] INFO org.hibernate.cfg.Environment - Bytecode provider name : javassist
52 [main] INFO org.hibernate.cfg.Environment - using JDK 1.4 java.sql.Timestamp handling
158 [main] INFO org.hibernate.cfg.Configuration - configuring from resource: /hibernate.cfg.xml
158 [main] INFO org.hibernate.cfg.Configuration - Configuration resource: /hibernate.cfg.xml
291 [main] INFO org.hibernate.cfg.Configuration - Reading mappings from resource : Menu.hbm.xml
410 [main] INFO org.hibernate.cfg.HbmBinder - Mapping class: com.JollyDyip.model.Menu -> menu
441 [main] INFO org.hibernate.cfg.Configuration - Configured SessionFactory: null
522 [main] INFO org.hibernate.connection.DriverManagerConnectionProvider - Using Hibernate built-in connection pool (not for production use!)
522 [main] INFO org.hibernate.connection.DriverManagerConnectionProvider - Hibernate connection pool size: 20
522 [main] INFO org.hibernate.connection.DriverManagerConnectionProvider - autocommit mode: false
657 [main] INFO org.hibernate.connection.DriverManagerConnectionProvider - using driver: com.microsoft.sqlserver.jdbc.SQLServerDriver at URL: jdbc:sqlserver://172.16.251.129;databaseName=JOLLYDYIP
657 [main] INFO org.hibernate.connection.DriverManagerConnectionProvider - connection properties: {user=sa, password=****}
785 [main] INFO org.hibernate.cfg.SettingsFactory - RDBMS: Microsoft SQL Server, version: 8.00.760
785 [main] INFO org.hibernate.cfg.SettingsFactory - JDBC driver: Microsoft SQL Server JDBC Driver 2.0, version: 2.0.1803.100
860 [main] INFO org.hibernate.dialect.Dialect - Using dialect: org.hibernate.dialect.SQLServerDialect
874 [main] INFO org.hibernate.transaction.TransactionFactoryFactory - Using default transaction strategy (direct JDBC transactions)
876 [main] INFO org.hibernate.transaction.TransactionManagerLookupFactory - No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
877 [main] INFO org.hibernate.cfg.SettingsFactory - Automatic flush during beforeCompletion(): disabled
877 [main] INFO org.hibernate.cfg.SettingsFactory - Automatic session close at end of transaction: disabled
881 [main] INFO org.hibernate.cfg.SettingsFactory - Scrollable result sets: enabled
882 [main] INFO org.hibernate.cfg.SettingsFactory - JDBC3 getGeneratedKeys(): enabled
882 [main] INFO org.hibernate.cfg.SettingsFactory - Connection release mode: auto
882 [main] INFO org.hibernate.cfg.SettingsFactory - Default batch fetch size: 1
882 [main] INFO org.hibernate.cfg.SettingsFactory - Generate SQL with comments: disabled
882 [main] INFO org.hibernate.cfg.SettingsFactory - Order SQL updates by primary key: disabled
882 [main] INFO org.hibernate.cfg.SettingsFactory - Order SQL inserts for batching: disabled
883 [main] INFO org.hibernate.cfg.SettingsFactory - Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
885 [main] INFO org.hibernate.hql.ast.ASTQueryTranslatorFactory - Using ASTQueryTranslatorFactory
885 [main] INFO org.hibernate.cfg.SettingsFactory - Query language substitutions: {}
885 [main] INFO org.hibernate.cfg.SettingsFactory - JPA-QL strict compliance: disabled
885 [main] INFO org.hibernate.cfg.SettingsFactory - Second-level cache: enabled
885 [main] INFO org.hibernate.cfg.SettingsFactory - Query cache: disabled
885 [main] INFO org.hibernate.cfg.SettingsFactory - Cache region factory : org.hibernate.cache.impl.NoCachingRegionFactory
885 [main] INFO org.hibernate.cfg.SettingsFactory - Optimize cache for minimal puts: disabled
885 [main] INFO org.hibernate.cfg.SettingsFactory - Structured second-level cache entries: disabled
894 [main] INFO org.hibernate.cfg.SettingsFactory - Echoing all SQL to stdout
894 [main] INFO org.hibernate.cfg.SettingsFactory - Statistics: disabled
894 [main] INFO org.hibernate.cfg.SettingsFactory - Deleted entity synthetic identifier rollback: disabled
895 [main] INFO org.hibernate.cfg.SettingsFactory - Default entity-mode: pojo
895 [main] INFO org.hibernate.cfg.SettingsFactory - Named query checking : enabled
964 [main] INFO org.hibernate.impl.SessionFactoryImpl - building session factory
org.hibernate.PropertyNotFoundException: Could not find a getter for id in class com.JollyDyip.model.Menu
at org.hibernate.property.BasicPropertyAccessor.createGetter(BasicPropertyAccessor.java:306)
at org.hibernate.property.BasicPropertyAccessor.getGetter(BasicPropertyAccessor.java:299)
at org.hibernate.tuple.PropertyFactory.getGetter(PropertyFactory.java:191)
at org.hibernate.tuple.PropertyFactory.buildIdentifierProperty(PropertyFactory.java:67)
at org.hibernate.tuple.entity.EntityMetamodel.<init>(EntityMetamodel.java:136)
at org.hibernate.persister.entity.AbstractEntityPersister.<init>(AbstractEntityPersister.java:456)
at org.hibernate.persister.entity.SingleTableEntityPersister.<init>(SingleTableEntityPersister.java:131)
at org.hibernate.persister.PersisterFactory.createClassPersister(PersisterFactory.java:84)
at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:267)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1341)
at com.JollyDyip.util.HibernateUtil.<clinit>(HibernateUtil.java:13)
at com.JollyDyip.test.TestMenuDao.main(TestMenuDao.java:16)
Exception in thread "main" java.lang.ExceptionInInitializerError
at com.JollyDyip.util.HibernateUtil.<clinit>(HibernateUtil.java:16)
at com.JollyDyip.test.TestMenuDao.main(TestMenuDao.java:16)
Caused by: org.hibernate.PropertyNotFoundException: Could not find a getter for id in class com.JollyDyip.model.Menu
at org.hibernate.property.BasicPropertyAccessor.createGetter(BasicPropertyAccessor.java:306)
at org.hibernate.property.BasicPropertyAccessor.getGetter(BasicPropertyAccessor.java:299)
at org.hibernate.tuple.PropertyFactory.getGetter(PropertyFactory.java:191)
at org.hibernate.tuple.PropertyFactory.buildIdentifierProperty(PropertyFactory.java:67)
at org.hibernate.tuple.entity.EntityMetamodel.<init>(EntityMetamodel.java:136)
at org.hibernate.persister.entity.AbstractEntityPersister.<init>(AbstractEntityPersister.java:456)
at org.hibernate.persister.entity.SingleTableEntityPersister.<init>(SingleTableEntityPersister.java:131)
at org.hibernate.persister.PersisterFactory.createClassPersister(PersisterFactory.java:84)
at org.hibernate.impl.SessionFactoryImpl.<init>(SessionFactoryImpl.java:267)
at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1341)
at com.JollyDyip.util.HibernateUtil.<clinit>(HibernateUtil.java:13)
... 1 more

hardy

Posts : 7
Angas Points : 11
Reputation : 0
Join date : 2009-10-27

Back to top Go down

Hibernate Error Message Cont... Empty Re: Hibernate Error Message Cont...

Post  bob_santos Wed Oct 28, 2009 12:15 am

Please post in Hibernate forums. Adding this to your previous post at .https://px1it.forumotion.com/hibernate-f11/hibernate-error-message-t24.htm
bob_santos
bob_santos

Posts : 45
Angas Points : 63
Reputation : 6
Join date : 2009-07-19
Location : Pasay, Philippines

Back to top Go down

Hibernate Error Message Cont... Empty Can't reply to post

Post  hardy Wed Oct 28, 2009 12:17 am

Hi Sir, I can't post a reply pag under na po sa subfolders ng form. I can only reply dito sa general.

hardy

Posts : 7
Angas Points : 11
Reputation : 0
Join date : 2009-10-27

Back to top Go down

Hibernate Error Message Cont... Empty Re: Hibernate Error Message Cont...

Post  bob_santos Wed Oct 28, 2009 12:19 am

hardy wrote:Hi Sir, I can't post a reply pag under na po sa subfolders ng form. I can only reply dito sa general.

OK na.
bob_santos
bob_santos

Posts : 45
Angas Points : 63
Reputation : 6
Join date : 2009-07-19
Location : Pasay, Philippines

Back to top Go down

Hibernate Error Message Cont... Empty Re: Hibernate Error Message Cont...

Post  Sponsored content


Sponsored content


Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum