Advertisement
Guest User

trace

a guest
Apr 24th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.25 KB | None | 0 0
  1. 16:43:41.619 [main] INFO com.colorado.denver.DenverApplication - Starting app!
  2.  
  3. . ____ _ __ _ _
  4. /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
  5. ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
  6. \\/ ___)| |_)| | | | | || (_| | ) ) ) )
  7. ' |____| .__|_| |_|_| |_\__, | / / / /
  8. =========|_|==============|___/=/_/_/_/
  9. :: Spring Boot :: (v1.5.2.RELEASE)
  10.  
  11. 2017-04-24 16:43:42.190 INFO 9060 --- [ main] com.colorado.denver.DenverApplication : Starting DenverApplication on Nico-Home with PID 9060 (started by chill in C:\1. Nico\Wichtige Dokumente\Denver)
  12. 2017-04-24 16:43:42.191 INFO 9060 --- [ main] com.colorado.denver.DenverApplication : No active profile set, falling back to default profiles: default
  13. 2017-04-24 16:43:42.706 INFO 9060 --- [ main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@23529fee: startup date [Mon Apr 24 16:43:42 CEST 2017]; root of context hierarchy
  14. 2017-04-24 16:43:44.151 INFO 9060 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$8f08ed56] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  15. 2017-04-24 16:43:44.569 INFO 9060 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
  16. 2017-04-24 16:43:44.583 INFO 9060 --- [ main] o.apache.catalina.core.StandardService : Starting service Tomcat
  17. 2017-04-24 16:43:44.585 INFO 9060 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.11
  18. 2017-04-24 16:43:44.717 INFO 9060 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  19. 2017-04-24 16:43:44.719 INFO 9060 --- [ost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2018 ms
  20. 2017-04-24 16:43:44.937 INFO 9060 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
  21. 2017-04-24 16:43:44.939 INFO 9060 --- [ost-startStop-1] .s.DelegatingFilterProxyRegistrationBean : Mapping filter: 'springSecurityFilterChain' to: [/*]
  22. 2017-04-24 16:43:44.939 INFO 9060 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
  23. 2017-04-24 16:43:46.246 INFO 9060 --- [ main] o.s.s.web.DefaultSecurityFilterChain : Creating filter chain: org.springframework.security.web.util.matcher.AnyRequestMatcher@1, [org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter@66f659e6, org.springframework.security.web.context.SecurityContextPersistenceFilter@de88ac6, org.springframework.security.web.header.HeaderWriterFilter@6dcd5639, org.springframework.security.web.authentication.logout.LogoutFilter@1a3e5f23, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@c6e0f32, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@7c3ebc6b, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@4a68135e, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@3a2b2322, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@105b693d, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@5ce4369b, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@46678e49, org.springframework.security.web.session.SessionManagementFilter@333cb916, org.springframework.security.web.access.ExceptionTranslationFilter@2ba33e2c, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3162743f]
  24. 2017-04-24 16:43:46.251 WARN 9060 --- [ main] o.s.s.c.a.web.builders.WebSecurity :
  25.  
  26. ********************************************************************
  27. ********** Security debugging is enabled. *************
  28. ********** This may include sensitive information. *************
  29. ********** Do not use in a production system! *************
  30. ********************************************************************
  31.  
  32.  
  33. 2017-04-24 16:43:46.372 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/course],methods=[POST]}" onto public com.colorado.denver.model.Course com.colorado.denver.controller.entityController.CourseController.handleCoursePostRequest()
  34. 2017-04-24 16:43:46.376 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/course],methods=[PATCH]}" onto public com.colorado.denver.model.Course com.colorado.denver.controller.entityController.CourseController.handleCoursePatchRequest()
  35. 2017-04-24 16:43:46.376 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/course],methods=[GET]}" onto public com.colorado.denver.model.Course com.colorado.denver.controller.entityController.CourseController.getCourseForUser(java.lang.String)
  36. 2017-04-24 16:43:46.377 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/courses],methods=[GET]}" onto public java.util.List<com.colorado.denver.model.Course> com.colorado.denver.controller.entityController.CourseController.getAllCourses()
  37. 2017-04-24 16:43:46.398 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/exercise],methods=[POST]}" onto public com.colorado.denver.model.Exercise com.colorado.denver.controller.entityController.ExerciseController.handleExercisePostRequest()
  38. 2017-04-24 16:43:46.398 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/exercise],methods=[GET]}" onto public com.colorado.denver.model.Exercise com.colorado.denver.controller.entityController.ExerciseController.getExerciseForUser(java.lang.String)
  39. 2017-04-24 16:43:46.400 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/exercises],methods=[GET]}" onto public java.util.Set<com.colorado.denver.model.Exercise> com.colorado.denver.controller.entityController.ExerciseController.getAllExercisesForUser()
  40. 2017-04-24 16:43:46.401 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/lecture],methods=[POST]}" onto public com.colorado.denver.model.Lecture com.colorado.denver.controller.entityController.LectureController.handleLecturePostRequest()
  41. 2017-04-24 16:43:46.402 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/lecture],methods=[PATCH]}" onto public com.colorado.denver.model.Lecture com.colorado.denver.controller.entityController.LectureController.handleLecturePatchRequest()
  42. 2017-04-24 16:43:46.403 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/lecture],methods=[GET]}" onto public com.colorado.denver.model.Lecture com.colorado.denver.controller.entityController.LectureController.getLectureForUser(java.lang.String)
  43. 2017-04-24 16:43:46.405 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/solution],methods=[GET]}" onto public com.colorado.denver.model.Solution com.colorado.denver.controller.entityController.SolutionController.getSolutionForUser(java.lang.String)
  44. 2017-04-24 16:43:46.405 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/docent/solution],methods=[GET]}" onto public com.colorado.denver.model.Solution com.colorado.denver.controller.entityController.SolutionController.getSolutionForUser(java.lang.String,java.lang.String)
  45. 2017-04-24 16:43:46.406 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/solution],methods=[PATCH]}" onto public com.colorado.denver.model.Solution com.colorado.denver.controller.entityController.SolutionController.handleSolutionPatchRequest()
  46. 2017-04-24 16:43:46.406 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/docent/solutions],methods=[GET]}" onto public java.util.Set<com.colorado.denver.model.Solution> com.colorado.denver.controller.entityController.SolutionController.getAllSolutions(java.lang.String,java.lang.String)
  47. 2017-04-24 16:43:46.410 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/user],methods=[PATCH]}" onto public com.colorado.denver.model.User com.colorado.denver.controller.entityController.UserController.handleUserPatchRequest()
  48. 2017-04-24 16:43:46.410 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/user],methods=[POST]}" onto public com.colorado.denver.model.User com.colorado.denver.controller.entityController.UserController.handleUserPostRequest()
  49. 2017-04-24 16:43:46.413 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/user],methods=[GET]}" onto public com.colorado.denver.model.User com.colorado.denver.controller.entityController.UserController.getUser()
  50. 2017-04-24 16:43:46.413 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/users],methods=[GET]}" onto public java.util.List<com.colorado.denver.model.User> com.colorado.denver.controller.entityController.UserController.getAllUsers()
  51. 2017-04-24 16:43:46.414 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/docent],methods=[GET]}" onto public com.colorado.denver.model.User com.colorado.denver.controller.entityController.UserController.getDocent()
  52. 2017-04-24 16:43:46.417 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/logout],methods=[POST]}" onto public java.lang.String com.colorado.denver.controller.UserInteractionController.logout()
  53. 2017-04-24 16:43:46.435 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/],methods=[POST]}" onto public boolean com.colorado.denver.controller.UserInteractionController.login()
  54. 2017-04-24 16:43:46.436 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/registration],methods=[POST]}" onto public java.lang.String com.colorado.denver.controller.UserInteractionController.registrationPost()
  55. 2017-04-24 16:43:46.436 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/updatePassword],methods=[POST]}" onto public java.lang.Boolean com.colorado.denver.controller.UserInteractionController.changePassword(java.lang.String,java.lang.String)
  56. 2017-04-24 16:43:46.437 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/registration],methods=[GET]}" onto public java.util.List<com.colorado.denver.model.Course> com.colorado.denver.controller.UserInteractionController.registrationGet()
  57. 2017-04-24 16:43:46.444 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
  58. 2017-04-24 16:43:46.445 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
  59. 2017-04-24 16:43:47.046 INFO 9060 --- [ main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@23529fee: startup date [Mon Apr 24 16:43:42 CEST 2017]; root of context hierarchy
  60. 2017-04-24 16:43:49.176 INFO 9060 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
  61. 2017-04-24 16:43:49.277 INFO 9060 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
  62. 2017-04-24 16:43:49.285 INFO 9060 --- [ main] com.colorado.denver.DenverApplication : Started DenverApplication in 7.527 seconds (JVM running for 8.234)
  63. 2017-04-24 16:43:49.430 INFO 9060 --- [nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring FrameworkServlet 'dispatcherServlet'
  64. 2017-04-24 16:43:49.430 INFO 9060 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
  65. 2017-04-24 16:43:49.467 INFO 9060 --- [ main] org.hibernate.Version : HHH000412: Hibernate Core {5.0.12.Final}
  66. 2017-04-24 16:43:49.471 INFO 9060 --- [ main] org.hibernate.cfg.Environment : HHH000206: hibernate.properties not found
  67. 2017-04-24 16:43:49.474 INFO 9060 --- [ main] org.hibernate.cfg.Environment : HHH000021: Bytecode provider name : javassist
  68. 2017-04-24 16:43:49.477 INFO 9060 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 47 ms
  69. 2017-04-24 16:43:49.515 INFO 9060 --- [nio-8080-exec-1] Spring Security Debugger :
  70.  
  71. ************************************************************
  72.  
  73. Request received for GET '/registration':
  74.  
  75. org.apache.catalina.connector.RequestFacade@74f042cb
  76.  
  77. servletPath:/registration
  78. pathInfo:null
  79. headers:
  80. host: localhost
  81. x-real-ip: 127.0.0.1
  82. x-forwarded-for: 127.0.0.1
  83. x-forwarded-host: localhost
  84. connection: close
  85. pragma: no-cache
  86. cache-control: no-cache
  87. accept: application/json, text/javascript, */*; q=0.01
  88. origin: http://localhost:8081
  89. user-agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36
  90. referer: http://localhost:8081/
  91. accept-encoding: gzip, deflate, sdch, br
  92. accept-language: de-DE,de;q=0.8,en-US;q=0.6,en;q=0.4
  93.  
  94.  
  95. Security filter chain: [
  96. WebAsyncManagerIntegrationFilter
  97. SecurityContextPersistenceFilter
  98. HeaderWriterFilter
  99. LogoutFilter
  100. UsernamePasswordAuthenticationFilter
  101. DefaultLoginPageGeneratingFilter
  102. BasicAuthenticationFilter
  103. BasicAuthenticationFilter
  104. RequestCacheAwareFilter
  105. SecurityContextHolderAwareRequestFilter
  106. AnonymousAuthenticationFilter
  107. SessionManagementFilter
  108. ExceptionTranslationFilter
  109. FilterSecurityInterceptor
  110. ]
  111.  
  112.  
  113. ************************************************************
  114.  
  115.  
  116. 2017-04-24 16:43:49.694 ERROR 9060 --- [nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause
  117.  
  118. java.lang.NullPointerException: null
  119. at com.colorado.denver.controller.HibernateController.getEntityList(HibernateController.java:191) ~[classes/:na]
  120. at com.colorado.denver.services.CourseService.getAllCourses(CourseService.java:29) ~[classes/:na]
  121. at com.colorado.denver.controller.UserInteractionController.registrationGet(UserInteractionController.java:37) ~[classes/:na]
  122. at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_121]
  123. at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[na:1.8.0_121]
  124. at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[na:1.8.0_121]
  125. at java.lang.reflect.Method.invoke(Unknown Source) ~[na:1.8.0_121]
  126. at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  127. at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:133) ~[spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  128. at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:116) ~[spring-webmvc-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  129. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:827) ~[spring-webmvc-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  130. at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:738) ~[spring-webmvc-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  131. at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:85) ~[spring-webmvc-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  132. at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:963) ~[spring-webmvc-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  133. at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:897) ~[spring-webmvc-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  134. at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:970) ~[spring-webmvc-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  135. at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:861) ~[spring-webmvc-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  136. at javax.servlet.http.HttpServlet.service(HttpServlet.java:622) ~[tomcat-embed-core-8.5.11.jar:8.5.11]
  137. at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:846) ~[spring-webmvc-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  138. at javax.servlet.http.HttpServlet.service(HttpServlet.java:729) ~[tomcat-embed-core-8.5.11.jar:8.5.11]
  139. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230) ~[tomcat-embed-core-8.5.11.jar:8.5.11]
  140. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) ~[tomcat-embed-core-8.5.11.jar:8.5.11]
  141. at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52) ~[tomcat-embed-websocket-8.5.11.jar:8.5.11]
  142. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) ~[tomcat-embed-core-8.5.11.jar:8.5.11]
  143. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) ~[tomcat-embed-core-8.5.11.jar:8.5.11]
  144. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:317) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  145. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:127) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  146. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  147. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  148. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  149. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  150. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  151. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  152. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  153. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  154. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  155. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  156. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  157. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  158. at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal(BasicAuthenticationFilter.java:158) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  159. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  160. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  161. at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal(BasicAuthenticationFilter.java:158) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  162. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  163. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  164. at org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter.doFilter(DefaultLoginPageGeneratingFilter.java:177) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  165. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  166. at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  167. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  168. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  169. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  170. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  171. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  172. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  173. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  174. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  175. at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:56) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  176. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  177. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  178. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  179. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  180. at org.springframework.security.web.debug.DebugFilter.invokeWithWrappedRequest(DebugFilter.java:90) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  181. at org.springframework.security.web.debug.DebugFilter.doFilter(DebugFilter.java:77) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  182. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346) ~[spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  183. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262) ~[spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  184. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) ~[tomcat-embed-core-8.5.11.jar:8.5.11]
  185. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) ~[tomcat-embed-core-8.5.11.jar:8.5.11]
  186. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197) ~[spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  187. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) ~[spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  188. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) ~[tomcat-embed-core-8.5.11.jar:8.5.11]
  189. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) ~[tomcat-embed-core-8.5.11.jar:8.5.11]
  190. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198) ~[tomcat-embed-core-8.5.11.jar:8.5.11]
  191. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) [tomcat-embed-core-8.5.11.jar:8.5.11]
  192. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474) [tomcat-embed-core-8.5.11.jar:8.5.11]
  193. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140) [tomcat-embed-core-8.5.11.jar:8.5.11]
  194. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79) [tomcat-embed-core-8.5.11.jar:8.5.11]
  195. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87) [tomcat-embed-core-8.5.11.jar:8.5.11]
  196. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349) [tomcat-embed-core-8.5.11.jar:8.5.11]
  197. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783) [tomcat-embed-core-8.5.11.jar:8.5.11]
  198. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) [tomcat-embed-core-8.5.11.jar:8.5.11]
  199. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798) [tomcat-embed-core-8.5.11.jar:8.5.11]
  200. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434) [tomcat-embed-core-8.5.11.jar:8.5.11]
  201. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) [tomcat-embed-core-8.5.11.jar:8.5.11]
  202. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [na:1.8.0_121]
  203. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [na:1.8.0_121]
  204. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) [tomcat-embed-core-8.5.11.jar:8.5.11]
  205. at java.lang.Thread.run(Unknown Source) [na:1.8.0_121]
  206.  
  207. 2017-04-24 16:43:49.979 INFO 9060 --- [ main] c.c.d.s.persistence.HibernateSession : Try using UpdateRoutine: true
  208. 2017-04-24 16:43:49.980 INFO 9060 --- [ main] c.c.d.s.persistence.HibernateSession : Hibernate mode: update
  209. 2017-04-24 16:43:50.003 INFO 9060 --- [ main] c.c.d.s.persistence.HibernateSession : Creating session factory instance!
  210. 2017-04-24 16:43:50.044 INFO 9060 --- [ main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.0.1.Final}
  211. 2017-04-24 16:43:50.173 WARN 9060 --- [ main] org.hibernate.orm.connections : HHH10001002: Using Hibernate built-in connection pool (not for production use!)
  212. 2017-04-24 16:43:50.182 INFO 9060 --- [ main] org.hibernate.orm.connections : HHH10001005: using driver [org.postgresql.Driver] at URL [jdbc:postgresql://localhost/Denver]
  213. 2017-04-24 16:43:50.183 INFO 9060 --- [ main] org.hibernate.orm.connections : HHH10001001: Connection properties: {user=postgres, password=****}
  214. 2017-04-24 16:43:50.183 INFO 9060 --- [ main] org.hibernate.orm.connections : HHH10001003: Autocommit mode: false
  215. 2017-04-24 16:43:50.189 INFO 9060 --- [ main] .c.i.DriverManagerConnectionProviderImpl : HHH000115: Hibernate connection pool size: 20 (min=1)
  216. 2017-04-24 16:43:50.324 INFO 9060 --- [ main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.PostgreSQLDialect
  217. 2017-04-24 16:43:50.549 INFO 9060 --- [ main] o.h.e.j.e.i.LobCreatorBuilderImpl : HHH000424: Disabling contextual LOB creation as createClob() method threw error : java.lang.reflect.InvocationTargetException
  218. 2017-04-24 16:43:50.553 INFO 9060 --- [ main] org.hibernate.type.BasicTypeRegistry : HHH000270: Type registration [java.util.UUID] overrides previous : org.hibernate.type.UUIDBinaryType@70029d2d
  219. 2017-04-24 16:43:51.554 INFO 9060 --- [ main] org.hibernate.tool.hbm2ddl.SchemaUpdate : HHH000228: Running hbm2ddl schema update
  220. 2017-04-24 16:43:52.361 INFO 9060 --- [ main] c.c.d.s.persistence.HibernateSession : Created session factory instance!
  221. Session Is Opened : true
  222. Session Is Connected : true
  223. 2017-04-24 16:43:52.473 INFO 9060 --- [ main] c.c.d.s.persistence.HibernateSession : Session opened and committed!!
  224. 2017-04-24 16:43:52.616 INFO 9060 --- [ main] org.reflections.Reflections : Reflections took 84 ms to scan 1 urls, producing 34 keys and 86 values
  225. Login getting user: Peter Student C1
  226. Returning User:Peter Student C1
  227. Custom generated Sequence value : user_00011
  228. 2017-04-24 16:46:16.608 ERROR 9060 --- [nio-8080-exec-3] c.c.denver.services.user.UserService : Wrong Principal is used to get User?!!!org.springframework.security.authentication.UsernamePasswordAuthenticationToken@74f4401e: Principal: test2; Credentials: [PROTECTED]; Authenticated: true; Details: null; Granted Authorities: Privilege [id=privilege_00002, name=ROLE_STUDENT]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement