Guest User

Untitled

a guest
Jan 21st, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.87 KB | None | 0 0
  1. run:
  2. 03/04/2011 08:15:20 PM org.hibernate.cfg.annotations.Version <clinit>
  3. INFO: Hibernate Annotations 3.3.1.GA
  4. 03/04/2011 08:15:20 PM org.hibernate.cfg.Environment <clinit>
  5. INFO: Hibernate 3.2.5
  6. 03/04/2011 08:15:20 PM org.hibernate.cfg.Environment <clinit>
  7. INFO: hibernate.properties not found
  8. 03/04/2011 08:15:20 PM org.hibernate.cfg.Environment buildBytecodeProvider
  9. INFO: Bytecode provider name : cglib
  10. 03/04/2011 08:15:20 PM org.hibernate.cfg.Environment <clinit>
  11. INFO: using JDK 1.4 java.sql.Timestamp handling
  12. 03/04/2011 08:15:20 PM org.hibernate.cfg.Configuration configure
  13. INFO: configuring from resource: /hibernate.cfg.xml
  14. 03/04/2011 08:15:20 PM org.hibernate.cfg.Configuration getConfigurationInputStream
  15. INFO: Configuration resource: /hibernate.cfg.xml
  16. 03/04/2011 08:15:20 PM org.hibernate.cfg.Configuration doConfigure
  17. INFO: Configured SessionFactory: null
  18. 03/04/2011 08:15:20 PM org.hibernate.cfg.AnnotationBinder bindClass
  19. INFO: Binding entity from annotated class: edu.urbe.casalorena.model.Customer
  20. 03/04/2011 08:15:20 PM org.hibernate.cfg.annotations.EntityBinder bindTable
  21. INFO: Bind entity edu.urbe.casalorena.model.Customer on table Customer
  22. 03/04/2011 08:15:20 PM org.hibernate.cfg.AnnotationBinder bindClass
  23. INFO: Binding entity from annotated class: edu.urbe.casalorena.model.Product
  24. 03/04/2011 08:15:20 PM org.hibernate.cfg.annotations.EntityBinder bindTable
  25. INFO: Bind entity edu.urbe.casalorena.model.Product on table Product
  26. 03/04/2011 08:15:20 PM org.hibernate.cfg.AnnotationBinder bindClass
  27. INFO: Binding entity from annotated class: edu.urbe.casalorena.model.CustomerOrder
  28. 03/04/2011 08:15:20 PM org.hibernate.cfg.annotations.EntityBinder bindTable
  29. INFO: Bind entity edu.urbe.casalorena.model.CustomerOrder on table CustomerOrder
  30. 03/04/2011 08:15:20 PM org.hibernate.cfg.AnnotationBinder bindClass
  31. INFO: Binding entity from annotated class: edu.urbe.casalorena.model.ProductOrder
  32. 03/04/2011 08:15:20 PM org.hibernate.cfg.annotations.EntityBinder bindTable
  33. INFO: Bind entity edu.urbe.casalorena.model.ProductOrder on table ProductOrder
  34. 03/04/2011 08:15:21 PM org.hibernate.cfg.AnnotationConfiguration secondPassCompile
  35. INFO: Hibernate Validator not found: ignoring
  36. 03/04/2011 08:15:21 PM org.hibernate.connection.DriverManagerConnectionProvider configure
  37. INFO: Using Hibernate built-in connection pool (not for production use!)
  38. 03/04/2011 08:15:21 PM org.hibernate.connection.DriverManagerConnectionProvider configure
  39. INFO: Hibernate connection pool size: 20
  40. 03/04/2011 08:15:21 PM org.hibernate.connection.DriverManagerConnectionProvider configure
  41. INFO: autocommit mode: false
  42. 03/04/2011 08:15:21 PM org.hibernate.connection.DriverManagerConnectionProvider configure
  43. INFO: using driver: com.mysql.jdbc.Driver at URL: jdbc:mysql://localhost:3306/casalorena
  44. 03/04/2011 08:15:21 PM org.hibernate.connection.DriverManagerConnectionProvider configure
  45. INFO: connection properties: {user=root, password=****}
  46. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  47. ADVERTENCIA: Could not obtain connection metadata
  48. java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES)
  49. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1055)
  50. at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:956)
  51. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3491)
  52. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:3423)
  53. at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:910)
  54. at com.mysql.jdbc.MysqlIO.secureAuth411(MysqlIO.java:3923)
  55. at com.mysql.jdbc.MysqlIO.doHandshake(MysqlIO.java:1273)
  56. at com.mysql.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:2031)
  57. at com.mysql.jdbc.ConnectionImpl.<init>(ConnectionImpl.java:718)
  58. at com.mysql.jdbc.JDBC4Connection.<init>(JDBC4Connection.java:46)
  59. at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  60. at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
  61. at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
  62. at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
  63. at com.mysql.jdbc.Util.handleNewInstance(Util.java:406)
  64. at com.mysql.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:302)
  65. at com.mysql.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:282)
  66. at java.sql.DriverManager.getConnection(DriverManager.java:582)
  67. at java.sql.DriverManager.getConnection(DriverManager.java:154)
  68. at org.hibernate.connection.DriverManagerConnectionProvider.getConnection(DriverManagerConnectionProvider.java:110)
  69. at org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:84)
  70. at org.hibernate.cfg.Configuration.buildSettings(Configuration.java:2009)
  71. at org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1292)
  72. at org.hibernate.cfg.AnnotationConfiguration.buildSessionFactory(AnnotationConfiguration.java:859)
  73. at edu.urbe.casalorena.config.HibernateFactory.configureSessionFactory(HibernateFactory.java:94)
  74. at edu.urbe.casalorena.config.HibernateFactory.buildIfNeeded(HibernateFactory.java:44)
  75. at edu.urbe.casalorena.config.GenericDAO.<init>(GenericDAO.java:27)
  76. at edu.urbe.casalorena.dao.MockCustomerDAO.<init>(MockCustomerDAO.java:16)
  77. at edu.urbe.casalorena.presenter.InsertCustomerPresenter.createCustomer(InsertCustomerPresenter.java:77)
  78. at edu.urbe.casalorena.view.InsertCustomerWindow.saveButtonActionPerformed(InsertCustomerWindow.java:153)
  79. at edu.urbe.casalorena.view.InsertCustomerWindow.access$000(InsertCustomerWindow.java:20)
  80. at edu.urbe.casalorena.view.InsertCustomerWindow$1.actionPerformed(InsertCustomerWindow.java:69)
  81. at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
  82. at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
  83. at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
  84. at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
  85. at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
  86. at java.awt.Component.processMouseEvent(Component.java:6289)
  87. at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
  88. at java.awt.Component.processEvent(Component.java:6054)
  89. at java.awt.Container.processEvent(Container.java:2041)
  90. at java.awt.Component.dispatchEventImpl(Component.java:4652)
  91. at java.awt.Container.dispatchEventImpl(Container.java:2099)
  92. at java.awt.Component.dispatchEvent(Component.java:4482)
  93. at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
  94. at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
  95. at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
  96. at java.awt.Container.dispatchEventImpl(Container.java:2085)
  97. at java.awt.Window.dispatchEventImpl(Window.java:2478)
  98. at java.awt.Component.dispatchEvent(Component.java:4482)
  99. at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)
  100. at java.awt.EventQueue.access$000(EventQueue.java:85)
  101. at java.awt.EventQueue$1.run(EventQueue.java:603)
  102. at java.awt.EventQueue$1.run(EventQueue.java:601)
  103. at java.security.AccessController.doPrivileged(Native Method)
  104. at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
  105. at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
  106. at java.awt.EventQueue$2.run(EventQueue.java:617)
  107. at java.awt.EventQueue$2.run(EventQueue.java:615)
  108. at java.security.AccessController.doPrivileged(Native Method)
  109. at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
  110. at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)
  111. at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
  112. at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
  113. at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
  114. at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
  115. at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
  116. at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
  117. 03/04/2011 08:15:21 PM org.hibernate.dialect.Dialect <init>
  118. INFO: Using dialect: org.hibernate.dialect.MySQLDialect
  119. 03/04/2011 08:15:21 PM org.hibernate.transaction.TransactionFactoryFactory buildTransactionFactory
  120. INFO: Using default transaction strategy (direct JDBC transactions)
  121. 03/04/2011 08:15:21 PM org.hibernate.transaction.TransactionManagerLookupFactory getTransactionManagerLookup
  122. INFO: No TransactionManagerLookup configured (in JTA environment, use of read-write or transactional second-level cache is not recommended)
  123. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  124. INFO: Automatic flush during beforeCompletion(): disabled
  125. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  126. INFO: Automatic session close at end of transaction: disabled
  127. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  128. INFO: Scrollable result sets: disabled
  129. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  130. INFO: JDBC3 getGeneratedKeys(): disabled
  131. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  132. INFO: Connection release mode: auto
  133. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  134. INFO: Maximum outer join fetch depth: 2
  135. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  136. INFO: Default batch fetch size: 1
  137. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  138. INFO: Generate SQL with comments: disabled
  139. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  140. INFO: Order SQL updates by primary key: disabled
  141. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  142. INFO: Order SQL inserts for batching: disabled
  143. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory createQueryTranslatorFactory
  144. INFO: Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
  145. 03/04/2011 08:15:21 PM org.hibernate.hql.ast.ASTQueryTranslatorFactory <init>
  146. INFO: Using ASTQueryTranslatorFactory
  147. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  148. INFO: Query language substitutions: {}
  149. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  150. INFO: JPA-QL strict compliance: disabled
  151. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  152. INFO: Second-level cache: enabled
  153. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  154. INFO: Query cache: disabled
  155. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory createCacheProvider
  156. INFO: Cache provider: org.hibernate.cache.NoCacheProvider
  157. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  158. INFO: Optimize cache for minimal puts: disabled
  159. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  160. INFO: Structured second-level cache entries: disabled
  161. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  162. INFO: Echoing all SQL to stdout
  163. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  164. INFO: Statistics: disabled
  165. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  166. INFO: Deleted entity synthetic identifier rollback: disabled
  167. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  168. INFO: Default entity-mode: pojo
  169. 03/04/2011 08:15:21 PM org.hibernate.cfg.SettingsFactory buildSettings
  170. INFO: Named query checking : enabled
  171. 03/04/2011 08:15:21 PM org.hibernate.impl.SessionFactoryImpl <init>
  172. INFO: building session factory
  173. 03/04/2011 08:15:22 PM org.hibernate.impl.SessionFactoryObjectFactory addInstance
  174. saving...
  175. INFO: Not binding factory to JNDI, no JNDI name configured
  176. 03/04/2011 08:15:22 PM org.hibernate.util.JDBCExceptionReporter logExceptions
  177. ADVERTENCIA: SQL Error: 1045, SQLState: 28000
  178. 03/04/2011 08:15:22 PM org.hibernate.util.JDBCExceptionReporter logExceptions
  179. GRAVE: Access denied for user 'root'@'localhost' (using password: YES)
  180. org.hibernate.exception.GenericJDBCException: Cannot open connection
  181. Exception in thread "AWT-EventQueue-0" org.hibernate.HibernateException: handle problem
  182. at edu.urbe.casalorena.config.GenericDAO.handleException(GenericDAO.java:122)
  183. at edu.urbe.casalorena.config.GenericDAO.saveOrUpdate(GenericDAO.java:36)
  184. at edu.urbe.casalorena.dao.MockCustomerDAO.save(MockCustomerDAO.java:19)
  185. at edu.urbe.casalorena.presenter.InsertCustomerPresenter.createCustomer(InsertCustomerPresenter.java:79)
  186. at edu.urbe.casalorena.view.InsertCustomerWindow.saveButtonActionPerformed(InsertCustomerWindow.java:153)
  187. at edu.urbe.casalorena.view.InsertCustomerWindow.access$000(InsertCustomerWindow.java:20)
  188. at edu.urbe.casalorena.view.InsertCustomerWindow$1.actionPerformed(InsertCustomerWindow.java:69)
  189. at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
  190. at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
  191. at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
  192. at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
  193. at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
  194. at java.awt.Component.processMouseEvent(Component.java:6289)
  195. at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
  196. at java.awt.Component.processEvent(Component.java:6054)
  197. at java.awt.Container.processEvent(Container.java:2041)
  198. at java.awt.Component.dispatchEventImpl(Component.java:4652)
  199. at java.awt.Container.dispatchEventImpl(Container.java:2099)
  200. at java.awt.Component.dispatchEvent(Component.java:4482)
  201. at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
  202. at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
  203. at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
  204. at java.awt.Container.dispatchEventImpl(Container.java:2085)
  205. at java.awt.Window.dispatchEventImpl(Window.java:2478)
  206. at java.awt.Component.dispatchEvent(Component.java:4482)
  207. at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:644)
  208. at java.awt.EventQueue.access$000(EventQueue.java:85)
  209. at java.awt.EventQueue$1.run(EventQueue.java:603)
  210. at java.awt.EventQueue$1.run(EventQueue.java:601)
  211. at java.security.AccessController.doPrivileged(Native Method)
  212. at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
  213. at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
  214. at java.awt.EventQueue$2.run(EventQueue.java:617)
  215. at java.awt.EventQueue$2.run(EventQueue.java:615)
  216. at java.security.AccessController.doPrivileged(Native Method)
  217. at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
  218. at java.awt.EventQueue.dispatchEvent(EventQueue.java:614)
  219. at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
  220. at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
  221. at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
  222. at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
  223. at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
  224. at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
Add Comment
Please, Sign In to add comment