Advertisement
Guest User

Untitled

a guest
Jun 14th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.81 KB | None | 0 0
  1. DEBUG: org.springframework.web.servlet.DispatcherServlet - DispatcherServlet with name 'testapp' determining Last-Modified value for [/TestApp/index.htm]
  2. TRACE: org.springframework.web.servlet.DispatcherServlet - Testing handler map [org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping@2c645bf5] in DispatcherServlet with name 'testapp'
  3. TRACE: org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping - No handler mapping found for [/index.htm]
  4. TRACE: org.springframework.web.servlet.DispatcherServlet - Testing handler map [org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping@70d14897] in DispatcherServlet with name 'testapp'
  5. DEBUG: org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping - Mapping [/index.htm] to handler 'com.test.web.controller.HomeController@6261b548'
  6. TRACE: org.springframework.web.servlet.DispatcherServlet - Testing handler adapter [org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter@222dd4b2]
  7. TRACE: org.springframework.web.servlet.DispatcherServlet - Testing handler adapter [org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter@28d24e15]
  8. TRACE: org.springframework.web.servlet.DispatcherServlet - Testing handler adapter [org.springframework.web.servlet.mvc.throwaway.ThrowawayControllerHandlerAdapter@36959a28]
  9. TRACE: org.springframework.web.servlet.DispatcherServlet - Testing handler adapter [org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter@17bbd417]
  10. DEBUG: org.springframework.web.servlet.DispatcherServlet - Last-Modified value for [/TestApp/index.htm] is: -1
  11. DEBUG: org.springframework.web.servlet.DispatcherServlet - DispatcherServlet with name 'testapp' processing request for [/TestApp/index.htm]
  12. TRACE: org.springframework.web.servlet.DispatcherServlet - Bound request context to thread: org.apache.catalina.connector.RequestFacade@715bea75
  13. TRACE: org.springframework.web.servlet.DispatcherServlet - Testing handler adapter [org.springframework.web.servlet.mvc.HttpRequestHandlerAdapter@222dd4b2]
  14. TRACE: org.springframework.web.servlet.DispatcherServlet - Testing handler adapter [org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter@28d24e15]
  15. TRACE: org.springframework.web.servlet.DispatcherServlet - Testing handler adapter [org.springframework.web.servlet.mvc.throwaway.ThrowawayControllerHandlerAdapter@36959a28]
  16. TRACE: org.springframework.web.servlet.DispatcherServlet - Testing handler adapter [org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter@17bbd417]
  17. DEBUG: org.springframework.web.bind.annotation.support.HandlerMethodInvoker - Invoking request handler method: public org.springframework.web.servlet.ModelAndView com.test.web.controller.HomeController.handleTest()
  18. DEBUG: org.springframework.orm.jpa.SharedEntityManagerCreator$SharedEntityManagerInvocationHandler - Creating new EntityManager for shared EntityManager invocation
  19. DEBUG: org.hibernate.impl.SessionImpl - opened session at timestamp: 12840299833
  20. TRACE: org.hibernate.event.def.AbstractSaveEventListener - transient instance of: com.test.domain.impl.Card
  21. TRACE: org.hibernate.event.def.DefaultPersistEventListener - saving transient instance
  22. DEBUG: org.hibernate.jdbc.AbstractBatcher - about to open PreparedStatement (open PreparedStatements: 0, globally: 0)
  23. DEBUG: org.hibernate.jdbc.ConnectionManager - opening JDBC connection
  24. DEBUG: org.springframework.jdbc.datasource.DriverManagerDataSource - Creating new JDBC DriverManager Connection to [jdbc:oracle:thin:@localhost:1521:XE]
  25. DEBUG: org.hibernate.SQL - select hibernate_sequence.nextval from dual
  26. Hibernate: select hibernate_sequence.nextval from dual
  27. TRACE: org.hibernate.jdbc.AbstractBatcher - preparing statement
  28. DEBUG: org.hibernate.id.SequenceGenerator - Sequence identifier generated: 4
  29. DEBUG: org.hibernate.jdbc.AbstractBatcher - about to close PreparedStatement (open PreparedStatements: 1, globally: 1)
  30. TRACE: org.hibernate.jdbc.AbstractBatcher - closing statement
  31. DEBUG: org.hibernate.jdbc.ConnectionManager - aggressively releasing JDBC connection
  32. DEBUG: org.hibernate.jdbc.ConnectionManager - releasing JDBC connection [ (open PreparedStatements: 0, globally: 0) (open ResultSets: 0, globally: 0)]
  33. DEBUG: org.hibernate.event.def.AbstractSaveEventListener - generated identifier: 4, using strategy: org.hibernate.id.SequenceGenerator
  34. TRACE: org.hibernate.event.def.AbstractSaveEventListener - saving [com.test.domain.impl.Card#4]
  35. TRACE: org.hibernate.event.def.WrapVisitor - Wrapped collection in role: com.test.domain.impl.Card.transactions
  36. DEBUG: org.springframework.orm.jpa.EntityManagerFactoryUtils - Closing JPA EntityManager
  37. TRACE: org.hibernate.impl.SessionImpl - closing session
  38. TRACE: org.hibernate.jdbc.ConnectionManager - connection already null in cleanup : no action
  39. DEBUG: com.test.dao.impl.CardDAO - Card Object Created: 4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement