Guest User

Untitled

a guest
Aug 31st, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.73 KB | None | 0 0
  1. hibernate org.objectweb.asm.classwriter
  2. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.Environment <clinit>
  3. INFO: Hibernate 2.1.6
  4. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.Environment <clinit>
  5. INFO: hibernate.properties not found
  6. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.Environment <clinit>
  7. INFO: using CGLIB reflection optimizer
  8. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.Configuration configure
  9. INFO: configuring from file: hibernate.cfg.xml
  10. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.Configuration addResource
  11. INFO: Mapping resource: org/projet/Timesheet.hbm.xml
  12. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.Binder bindRootClass
  13. INFO: Mapping class: org.projet.Timesheet -> timesheet
  14. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.Configuration doConfigure
  15. INFO: Configured SessionFactory: null
  16. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.Configuration secondPassCompile
  17. INFO: processing one-to-many association mappings
  18. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.Configuration secondPassCompile
  19. INFO: processing one-to-one association property references
  20. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.Configuration secondPassCompile
  21. INFO: processing foreign key constraints
  22. 12 mai 2011 09:57:53 net.sf.hibernate.dialect.Dialect <init>
  23. INFO: Using dialect: net.sf.hibernate.dialect.MySQLDialect
  24. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.SettingsFactory buildSettings
  25. INFO: Maximim outer join fetch depth: 2
  26. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.SettingsFactory buildSettings
  27. INFO: Use outer join fetching: true
  28. 12 mai 2011 09:57:53 net.sf.hibernate.connection.DriverManagerConnectionProvider configure
  29. INFO: Using Hibernate built-in connection pool (not for production use!)
  30. 12 mai 2011 09:57:53 net.sf.hibernate.connection.DriverManagerConnectionProvider configure
  31. INFO: Hibernate connection pool size: 20
  32. 12 mai 2011 09:57:53 net.sf.hibernate.connection.DriverManagerConnectionProvider configure
  33. INFO: using driver: org.gjt.mm.mysql.Driver at URL: jdbc:mysql://localhost:3306/timesheet
  34. 12 mai 2011 09:57:53 net.sf.hibernate.connection.DriverManagerConnectionProvider configure
  35. INFO: connection properties: {user=root, password=manel}
  36. 12 mai 2011 09:57:53 net.sf.hibernate.transaction.TransactionFactoryFactory buildTransactionFactory
  37. INFO: Transaction strategy: net.sf.hibernate.transaction.JDBCTransactionFactory
  38. 12 mai 2011 09:57:53 net.sf.hibernate.transaction.TransactionManagerLookupFactory getTransactionManagerLookup
  39. INFO: No TransactionManagerLookup configured (in JTA environment, use of process level read-write cache is not recommended)
  40. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.SettingsFactory buildSettings
  41. INFO: Use scrollable result sets: true
  42. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.SettingsFactory buildSettings
  43. INFO: Use JDBC3 getGeneratedKeys(): true
  44. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.SettingsFactory buildSettings
  45. INFO: Optimize cache for minimal puts: false
  46. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.SettingsFactory buildSettings
  47. INFO: Query language substitutions: {}
  48. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.SettingsFactory buildSettings
  49. INFO: cache provider: net.sf.hibernate.cache.EhCacheProvider
  50. 12 mai 2011 09:57:53 net.sf.hibernate.cfg.Configuration configureCaches
  51. INFO: instantiating and configuring caches
  52. Exception in thread "main" java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter.<init>(Z)V
  53. at net.sf.cglib.core.DebuggingClassWriter.<init>(DebuggingClassWriter.java:47)
  54. at net.sf.cglib.core.DefaultGeneratorStrategy.getClassWriter(DefaultGeneratorStrategy.java:30)
  55. at net.sf.cglib.core.DefaultGeneratorStrategy.generate(DefaultGeneratorStrategy.java:24)
  56. at net.sf.cglib.core.AbstractClassGenerator.create(AbstractClassGenerator.java:215)
  57. at net.sf.cglib.core.KeyFactory$Generator.create(KeyFactory.java:145)
  58. at net.sf.cglib.core.KeyFactory.create(KeyFactory.java:117)
  59. at net.sf.cglib.core.KeyFactory.create(KeyFactory.java:108)
  60. at net.sf.cglib.core.KeyFactory.create(KeyFactory.java:104)
  61. at net.sf.hibernate.impl.SessionFactoryImpl.<clinit>(SessionFactoryImpl.java:236)
  62. at net.sf.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:791)
  63. at org.projet.ModelTime.configure(ModelTime.java:28)
  64. at org.projet.TestClient.main(TestClient.java:19)
  65.  
  66. <dependency>
  67. <groupId>org.hibernate</groupId>
  68. <artifactId>hibernate-entitymanager</artifactId>
  69. <version>${hibernate.version}</version>
  70. <exclusions>
  71. <exclusion>
  72. <groupId>asm</groupId>
  73. <artifactId>asm</artifactId>
  74. </exclusion>
  75. </exclusions>
  76. </dependency>
  77.  
  78. <dependency>
  79. <groupId>asm</groupId>
  80. <artifactId>asm</artifactId>
  81. <version>${asm.version}</version>
  82. </dependency>
  83.  
  84. <properties>
  85. <hibernate.version>3.6.0.Final</hibernate.version>
  86. <asm.version>3.3</asm.version>
  87. </properties>
Add Comment
Please, Sign In to add comment