Advertisement
Guest User

Untitled

a guest
Apr 21st, 2017
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 82.15 KB | None | 0 0
  1. 18:36:18.586 [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-21 18:36:19.142 INFO 2548 --- [ main] com.colorado.denver.DenverApplication : Starting DenverApplication on Nico-Home with PID 2548 (started by chill in C:\1. Nico\Wichtige Dokumente\Denver)
  12. 2017-04-21 18:36:19.143 INFO 2548 --- [ main] com.colorado.denver.DenverApplication : No active profile set, falling back to default profiles: default
  13. 2017-04-21 18:36:19.657 INFO 2548 --- [ main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2fd6b6c7: startup date [Fri Apr 21 18:36:19 CEST 2017]; root of context hierarchy
  14. 2017-04-21 18:36:21.275 INFO 2548 --- [ main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$303c68be] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
  15. 2017-04-21 18:36:21.972 INFO 2548 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
  16. 2017-04-21 18:36:21.992 INFO 2548 --- [ main] o.apache.catalina.core.StandardService : Starting service Tomcat
  17. 2017-04-21 18:36:21.993 INFO 2548 --- [ main] org.apache.catalina.core.StandardEngine : Starting Servlet Engine: Apache Tomcat/8.5.11
  18. 2017-04-21 18:36:22.144 INFO 2548 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring embedded WebApplicationContext
  19. 2017-04-21 18:36:22.144 INFO 2548 --- [ost-startStop-1] o.s.web.context.ContextLoader : Root WebApplicationContext: initialization completed in 2492 ms
  20. 2017-04-21 18:36:22.369 INFO 2548 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean : Mapping filter: 'characterEncodingFilter' to: [/*]
  21. 2017-04-21 18:36:22.372 INFO 2548 --- [ost-startStop-1] .s.DelegatingFilterProxyRegistrationBean : Mapping filter: 'springSecurityFilterChain' to: [/*]
  22. 2017-04-21 18:36:22.373 INFO 2548 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean : Mapping servlet: 'dispatcherServlet' to [/]
  23. 2017-04-21 18:36:23.348 INFO 2548 --- [ 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@7428de63, org.springframework.security.web.context.SecurityContextPersistenceFilter@105b693d, org.springframework.security.web.header.HeaderWriterFilter@333cb916, org.springframework.security.web.authentication.logout.LogoutFilter@365553de, org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter@c6e0f32, org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter@6a9950f1, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@66f659e6, org.springframework.security.web.authentication.www.BasicAuthenticationFilter@3a2b2322, org.springframework.security.web.savedrequest.RequestCacheAwareFilter@4a0df195, org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter@1cb19dba, org.springframework.security.web.authentication.AnonymousAuthenticationFilter@4a68135e, org.springframework.security.web.session.SessionManagementFilter@1d25c1c, org.springframework.security.web.access.ExceptionTranslationFilter@31e72cbc, org.springframework.security.web.access.intercept.FilterSecurityInterceptor@3162743f]
  24. 2017-04-21 18:36:23.445 INFO 2548 --- [ 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()
  25. 2017-04-21 18:36:23.450 INFO 2548 --- [ 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()
  26. 2017-04-21 18:36:23.451 INFO 2548 --- [ 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()
  27. 2017-04-21 18:36:23.452 INFO 2548 --- [ 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)
  28. 2017-04-21 18:36:23.453 INFO 2548 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/exercise],methods=[PATCH]}" onto public com.colorado.denver.model.Exercise com.colorado.denver.controller.entityController.ExerciseController.handleExercisePatchRequest()
  29. 2017-04-21 18:36:23.453 INFO 2548 --- [ 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()
  30. 2017-04-21 18:36:23.453 INFO 2548 --- [ 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()
  31. 2017-04-21 18:36:23.454 INFO 2548 --- [ 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)
  32. 2017-04-21 18:36:23.454 INFO 2548 --- [ 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()
  33. 2017-04-21 18:36:23.455 INFO 2548 --- [ 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()
  34. 2017-04-21 18:36:23.455 INFO 2548 --- [ 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)
  35. 2017-04-21 18:36:23.457 INFO 2548 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/solution],methods=[POST]}" onto public com.colorado.denver.model.Solution com.colorado.denver.controller.entityController.SolutionController.handleSolutionPostRequest()
  36. 2017-04-21 18:36:23.458 INFO 2548 --- [ 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()
  37. 2017-04-21 18:36:23.458 INFO 2548 --- [ 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)
  38. 2017-04-21 18:36:23.458 INFO 2548 --- [ 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)
  39. 2017-04-21 18:36:23.458 INFO 2548 --- [ 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)
  40. 2017-04-21 18:36:23.461 INFO 2548 --- [ 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()
  41. 2017-04-21 18:36:23.461 INFO 2548 --- [ 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()
  42. 2017-04-21 18:36:23.462 INFO 2548 --- [ 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()
  43. 2017-04-21 18:36:23.462 INFO 2548 --- [ 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()
  44. 2017-04-21 18:36:23.463 INFO 2548 --- [ 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()
  45. 2017-04-21 18:36:23.463 INFO 2548 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/registration],methods=[GET]}" onto public java.lang.String com.colorado.denver.controller.entityController.UserController.registration(org.springframework.ui.Model)
  46. 2017-04-21 18:36:23.464 INFO 2548 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/registration],methods=[POST]}" onto public java.lang.String com.colorado.denver.controller.entityController.UserController.registration(java.lang.String,java.lang.String)
  47. 2017-04-21 18:36:23.464 INFO 2548 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/logout],methods=[GET]}" onto public java.lang.String com.colorado.denver.controller.entityController.UserController.logout()
  48. 2017-04-21 18:36:23.465 INFO 2548 --- [ main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/login],methods=[GET]}" onto public java.lang.String com.colorado.denver.controller.entityController.UserController.login()
  49. 2017-04-21 18:36:23.474 INFO 2548 --- [ 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)
  50. 2017-04-21 18:36:23.475 INFO 2548 --- [ 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)
  51. 2017-04-21 18:36:23.782 INFO 2548 --- [ main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2fd6b6c7: startup date [Fri Apr 21 18:36:19 CEST 2017]; root of context hierarchy
  52. 2017-04-21 18:36:25.431 INFO 2548 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
  53. 2017-04-21 18:36:25.501 INFO 2548 --- [ main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
  54. 2017-04-21 18:36:25.506 INFO 2548 --- [ main] com.colorado.denver.DenverApplication : Started DenverApplication in 6.758 seconds (JVM running for 7.446)
  55. 2017-04-21 18:36:25.707 INFO 2548 --- [ main] org.hibernate.Version : HHH000412: Hibernate Core {5.0.12.Final}
  56. 2017-04-21 18:36:25.711 INFO 2548 --- [ main] org.hibernate.cfg.Environment : HHH000206: hibernate.properties not found
  57. 2017-04-21 18:36:25.712 INFO 2548 --- [ main] org.hibernate.cfg.Environment : HHH000021: Bytecode provider name : javassist
  58. 2017-04-21 18:36:25.923 INFO 2548 --- [ main] c.c.d.services.persistence.SessionTools : Try using UpdateRoutine: true
  59. 2017-04-21 18:36:25.923 INFO 2548 --- [ main] c.c.d.services.persistence.SessionTools : Hibernate mode: update
  60. 2017-04-21 18:36:25.938 INFO 2548 --- [ main] c.c.d.services.persistence.SessionTools : Creating session factory instance!
  61. 2017-04-21 18:36:25.968 INFO 2548 --- [ main] o.hibernate.annotations.common.Version : HCANN000001: Hibernate Commons Annotations {5.0.1.Final}
  62. 2017-04-21 18:36:26.064 WARN 2548 --- [ main] org.hibernate.orm.connections : HHH10001002: Using Hibernate built-in connection pool (not for production use!)
  63. 2017-04-21 18:36:26.073 INFO 2548 --- [ main] org.hibernate.orm.connections : HHH10001005: using driver [org.postgresql.Driver] at URL [jdbc:postgresql://localhost/Denver]
  64. 2017-04-21 18:36:26.074 INFO 2548 --- [ main] org.hibernate.orm.connections : HHH10001001: Connection properties: {user=postgres, password=****}
  65. 2017-04-21 18:36:26.074 INFO 2548 --- [ main] org.hibernate.orm.connections : HHH10001003: Autocommit mode: false
  66. 2017-04-21 18:36:26.079 INFO 2548 --- [ main] .c.i.DriverManagerConnectionProviderImpl : HHH000115: Hibernate connection pool size: 20 (min=1)
  67. 2017-04-21 18:36:26.202 INFO 2548 --- [ main] org.hibernate.dialect.Dialect : HHH000400: Using dialect: org.hibernate.dialect.PostgreSQLDialect
  68. 2017-04-21 18:36:26.407 INFO 2548 --- [ main] o.h.e.j.e.i.LobCreatorBuilderImpl : HHH000424: Disabling contextual LOB creation as createClob() method threw error : java.lang.reflect.InvocationTargetException
  69. 2017-04-21 18:36:26.411 INFO 2548 --- [ main] org.hibernate.type.BasicTypeRegistry : HHH000270: Type registration [java.util.UUID] overrides previous : org.hibernate.type.UUIDBinaryType@1e3ff233
  70. 2017-04-21 18:36:27.237 INFO 2548 --- [ main] org.hibernate.tool.hbm2ddl.SchemaUpdate : HHH000228: Running hbm2ddl schema update
  71. 2017-04-21 18:36:27.991 INFO 2548 --- [ main] c.c.d.services.persistence.SessionTools : Created session factory instance!
  72. Session Is Opened : true
  73. Session Is Connected : true
  74. 2017-04-21 18:36:28.084 INFO 2548 --- [ main] c.c.d.services.persistence.SessionTools : Session opened and committed!!
  75. 2017-04-21 18:36:28.253 INFO 2548 --- [ main] org.reflections.Reflections : Reflections took 103 ms to scan 1 urls, producing 41 keys and 88 values
  76. 2017-04-21 18:36:28.441 INFO 2548 --- [ main] com.colorado.denver.DenverApplication : Successfully obtained system user Token. DB and security should be in healthy state
  77. 2017-04-21 18:36:41.954 DEBUG 2548 --- [8080-Acceptor-0] o.apache.tomcat.util.threads.LimitLatch : Counting up[http-nio-8080-Acceptor-0] latch=1
  78. 2017-04-21 18:36:41.982 DEBUG 2548 --- [nio-8080-exec-1] org.apache.tomcat.util.modeler.Registry : Managed= Tomcat:type=RequestProcessor,worker="http-nio-8080",name=HttpRequest1
  79. 2017-04-21 18:36:41.983 DEBUG 2548 --- [nio-8080-exec-1] org.apache.tomcat.util.modeler.Registry : Looking for descriptor
  80. 2017-04-21 18:36:41.983 DEBUG 2548 --- [nio-8080-exec-1] org.apache.tomcat.util.modeler.Registry : Introspecting
  81. 2017-04-21 18:36:41.984 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute virtualHost public java.lang.String org.apache.coyote.RequestInfo.getVirtualHost() null
  82. 2017-04-21 18:36:41.984 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute bytesSent public long org.apache.coyote.RequestInfo.getBytesSent() public void org.apache.coyote.RequestInfo.setBytesSent(long)
  83. 2017-04-21 18:36:41.984 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute method public java.lang.String org.apache.coyote.RequestInfo.getMethod() null
  84. 2017-04-21 18:36:41.984 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute remoteAddr public java.lang.String org.apache.coyote.RequestInfo.getRemoteAddr() null
  85. 2017-04-21 18:36:41.984 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute requestBytesSent public long org.apache.coyote.RequestInfo.getRequestBytesSent() null
  86. 2017-04-21 18:36:41.984 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute rpName public javax.management.ObjectName org.apache.coyote.RequestInfo.getRpName() public void org.apache.coyote.RequestInfo.setRpName(javax.management.ObjectName)
  87. 2017-04-21 18:36:41.984 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute contentLength public int org.apache.coyote.RequestInfo.getContentLength() null
  88. 2017-04-21 18:36:41.984 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute workerThreadName public java.lang.String org.apache.coyote.RequestInfo.getWorkerThreadName() public void org.apache.coyote.RequestInfo.setWorkerThreadName(java.lang.String)
  89. 2017-04-21 18:36:41.985 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute bytesReceived public long org.apache.coyote.RequestInfo.getBytesReceived() public void org.apache.coyote.RequestInfo.setBytesReceived(long)
  90. 2017-04-21 18:36:41.985 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute requestProcessingTime public long org.apache.coyote.RequestInfo.getRequestProcessingTime() null
  91. 2017-04-21 18:36:41.985 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute globalProcessor public org.apache.coyote.RequestGroupInfo org.apache.coyote.RequestInfo.getGlobalProcessor() public void org.apache.coyote.RequestInfo.setGlobalProcessor(org.apache.coyote.RequestGroupInfo)
  92. 2017-04-21 18:36:41.985 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute remoteAddrForwarded public java.lang.String org.apache.coyote.RequestInfo.getRemoteAddrForwarded() null
  93. 2017-04-21 18:36:41.985 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute currentQueryString public java.lang.String org.apache.coyote.RequestInfo.getCurrentQueryString() null
  94. 2017-04-21 18:36:41.985 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute protocol public java.lang.String org.apache.coyote.RequestInfo.getProtocol() null
  95. 2017-04-21 18:36:41.985 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute maxRequestUri public java.lang.String org.apache.coyote.RequestInfo.getMaxRequestUri() public void org.apache.coyote.RequestInfo.setMaxRequestUri(java.lang.String)
  96. 2017-04-21 18:36:41.985 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute requestBytesReceived public long org.apache.coyote.RequestInfo.getRequestBytesReceived() null
  97. 2017-04-21 18:36:41.985 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute serverPort public int org.apache.coyote.RequestInfo.getServerPort() null
  98. 2017-04-21 18:36:41.986 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute stage public int org.apache.coyote.RequestInfo.getStage() public void org.apache.coyote.RequestInfo.setStage(int)
  99. 2017-04-21 18:36:41.986 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute requestCount public int org.apache.coyote.RequestInfo.getRequestCount() public void org.apache.coyote.RequestInfo.setRequestCount(int)
  100. 2017-04-21 18:36:41.986 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute maxTime public long org.apache.coyote.RequestInfo.getMaxTime() public void org.apache.coyote.RequestInfo.setMaxTime(long)
  101. 2017-04-21 18:36:41.986 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute currentUri public java.lang.String org.apache.coyote.RequestInfo.getCurrentUri() null
  102. 2017-04-21 18:36:41.986 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute processingTime public long org.apache.coyote.RequestInfo.getProcessingTime() public void org.apache.coyote.RequestInfo.setProcessingTime(long)
  103. 2017-04-21 18:36:41.987 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute lastRequestProcessingTime public long org.apache.coyote.RequestInfo.getLastRequestProcessingTime() public void org.apache.coyote.RequestInfo.setLastRequestProcessingTime(long)
  104. 2017-04-21 18:36:41.987 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Introspected attribute errorCount public int org.apache.coyote.RequestInfo.getErrorCount() public void org.apache.coyote.RequestInfo.setErrorCount(int)
  105. 2017-04-21 18:36:41.987 DEBUG 2548 --- [nio-8080-exec-1] m.m.MbeansDescriptorsIntrospectionSource : Setting name: org.apache.coyote.RequestInfo
  106. 2017-04-21 18:36:41.987 DEBUG 2548 --- [nio-8080-exec-1] o.a.tomcat.util.modeler.BaseModelMBean : preRegister org.apache.coyote.RequestInfo@38524182 Tomcat:type=RequestProcessor,worker="http-nio-8080",name=HttpRequest1
  107. 2017-04-21 18:36:41.988 DEBUG 2548 --- [nio-8080-exec-1] o.a.tomcat.util.net.SocketWrapperBase : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@1200b50f:org.apache.tomcat.util.net.NioChannel@7d4bf91d:java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:50872]], Read from buffer: [0]
  108. 2017-04-21 18:36:41.989 DEBUG 2548 --- [nio-8080-exec-1] o.a.coyote.http11.Http11InputBuffer : Received [GET /courses HTTP/1.0
  109. Host: localhost
  110. X-Real-IP: 127.0.0.1
  111. X-Forwarded-For: 127.0.0.1
  112. X-Forwarded-Host: localhost
  113. Connection: close
  114. Pragma: no-cache
  115. Cache-Control: no-cache
  116. Accept: application/json, text/javascript, */*; q=0.01
  117. Origin: http://localhost:8081
  118. User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36
  119. Referer: http://localhost:8081/docent
  120. Accept-Encoding: gzip, deflate, sdch, br
  121. Accept-Language: de-DE,de;q=0.8,en-US;q=0.6,en;q=0.4
  122.  
  123. ]
  124. 2017-04-21 18:36:42.008 DEBUG 2548 --- [nio-8080-exec-1] org.apache.tomcat.util.http.Parameters : Set query string encoding to UTF-8
  125. 2017-04-21 18:36:42.011 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.authenticator.AuthenticatorBase : Security checking request GET /courses
  126. 2017-04-21 18:36:42.011 DEBUG 2548 --- [nio-8080-exec-1] org.apache.catalina.realm.RealmBase : No applicable constraints defined
  127. 2017-04-21 18:36:42.015 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.a.jaspic.AuthConfigFactoryImpl : Loading persistent provider registrations from [C:\Users\chill\AppData\Local\Temp\tomcat.4413630665946853966.8080\conf\jaspic-providers.xml]
  128. 2017-04-21 18:36:42.015 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.authenticator.AuthenticatorBase : Not subject to any constraint
  129. 2017-04-21 18:36:42.017 DEBUG 2548 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Initializing servlet 'dispatcherServlet'
  130. 2017-04-21 18:36:42.018 INFO 2548 --- [nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost].[/] : Initializing Spring FrameworkServlet 'dispatcherServlet'
  131. 2017-04-21 18:36:42.018 INFO 2548 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization started
  132. 2017-04-21 18:36:42.018 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'multipartResolver'
  133. 2017-04-21 18:36:42.018 DEBUG 2548 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Using MultipartResolver [org.springframework.web.multipart.support.StandardServletMultipartResolver@41ec40d3]
  134. 2017-04-21 18:36:42.019 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver'
  135. 2017-04-21 18:36:42.020 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : findClass(java.lang.ObjectCustomizer)
  136. 2017-04-21 18:36:42.021 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException
  137. 2017-04-21 18:36:42.022 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : findClass(org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolverCustomizer)
  138. 2017-04-21 18:36:42.022 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException
  139. 2017-04-21 18:36:42.023 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : findClass(org.springframework.web.servlet.LocaleResolverCustomizer)
  140. 2017-04-21 18:36:42.024 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException
  141. 2017-04-21 18:36:42.024 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
  142. 2017-04-21 18:36:42.024 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver'
  143. 2017-04-21 18:36:42.024 DEBUG 2548 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Unable to locate LocaleResolver with name 'localeResolver': using default [org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver@4aeda0e4]
  144. 2017-04-21 18:36:42.025 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.web.servlet.theme.FixedThemeResolver'
  145. 2017-04-21 18:36:42.026 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : findClass(java.lang.ObjectCustomizer)
  146. 2017-04-21 18:36:42.027 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException
  147. 2017-04-21 18:36:42.028 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : findClass(org.springframework.web.servlet.theme.AbstractThemeResolverCustomizer)
  148. 2017-04-21 18:36:42.028 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException
  149. 2017-04-21 18:36:42.029 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : findClass(org.springframework.web.servlet.theme.FixedThemeResolverCustomizer)
  150. 2017-04-21 18:36:42.030 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException
  151. 2017-04-21 18:36:42.031 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : findClass(org.springframework.web.servlet.ThemeResolverCustomizer)
  152. 2017-04-21 18:36:42.031 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException
  153. 2017-04-21 18:36:42.032 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
  154. 2017-04-21 18:36:42.032 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.web.servlet.theme.FixedThemeResolver'
  155. 2017-04-21 18:36:42.032 DEBUG 2548 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Unable to locate ThemeResolver with name 'themeResolver': using default [org.springframework.web.servlet.theme.FixedThemeResolver@7e35d00d]
  156. 2017-04-21 18:36:42.032 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'requestMappingHandlerMapping'
  157. 2017-04-21 18:36:42.032 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'viewControllerHandlerMapping'
  158. 2017-04-21 18:36:42.032 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'beanNameHandlerMapping'
  159. 2017-04-21 18:36:42.032 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'resourceHandlerMapping'
  160. 2017-04-21 18:36:42.032 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'defaultServletHandlerMapping'
  161. 2017-04-21 18:36:42.033 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'requestMappingHandlerAdapter'
  162. 2017-04-21 18:36:42.033 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'httpRequestHandlerAdapter'
  163. 2017-04-21 18:36:42.033 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'simpleControllerHandlerAdapter'
  164. 2017-04-21 18:36:42.034 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'handlerExceptionResolver'
  165. 2017-04-21 18:36:42.034 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'errorAttributes'
  166. 2017-04-21 18:36:42.035 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator'
  167. 2017-04-21 18:36:42.036 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : findClass(java.lang.ObjectCustomizer)
  168. 2017-04-21 18:36:42.037 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException
  169. 2017-04-21 18:36:42.038 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : findClass(org.springframework.web.servlet.view.DefaultRequestToViewNameTranslatorCustomizer)
  170. 2017-04-21 18:36:42.038 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException
  171. 2017-04-21 18:36:42.039 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : findClass(org.springframework.web.servlet.RequestToViewNameTranslatorCustomizer)
  172. 2017-04-21 18:36:42.039 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException
  173. 2017-04-21 18:36:42.040 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
  174. 2017-04-21 18:36:42.040 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator'
  175. 2017-04-21 18:36:42.040 DEBUG 2548 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Unable to locate RequestToViewNameTranslator with name 'viewNameTranslator': using default [org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator@122f6426]
  176. 2017-04-21 18:36:42.041 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'mvcViewResolver'
  177. 2017-04-21 18:36:42.041 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'beanNameViewResolver'
  178. 2017-04-21 18:36:42.041 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'groovyMarkupViewResolver'
  179. 2017-04-21 18:36:42.042 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Creating instance of bean 'org.springframework.web.servlet.support.SessionFlashMapManager'
  180. 2017-04-21 18:36:42.043 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : findClass(java.lang.ObjectCustomizer)
  181. 2017-04-21 18:36:42.043 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException
  182. 2017-04-21 18:36:42.044 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : findClass(org.springframework.web.servlet.support.AbstractFlashMapManagerCustomizer)
  183. 2017-04-21 18:36:42.045 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException
  184. 2017-04-21 18:36:42.046 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : findClass(org.springframework.web.servlet.support.SessionFlashMapManagerCustomizer)
  185. 2017-04-21 18:36:42.046 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException
  186. 2017-04-21 18:36:42.047 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : findClass(org.springframework.web.servlet.FlashMapManagerCustomizer)
  187. 2017-04-21 18:36:42.047 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.loader.WebappClassLoaderBase : --> Returning ClassNotFoundException
  188. 2017-04-21 18:36:42.048 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'org.springframework.transaction.config.internalTransactionAdvisor'
  189. 2017-04-21 18:36:42.048 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Finished creating instance of bean 'org.springframework.web.servlet.support.SessionFlashMapManager'
  190. 2017-04-21 18:36:42.048 DEBUG 2548 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Unable to locate FlashMapManager with name 'flashMapManager': using default [org.springframework.web.servlet.support.SessionFlashMapManager@515c2329]
  191. 2017-04-21 18:36:42.048 DEBUG 2548 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Published WebApplicationContext of servlet 'dispatcherServlet' as ServletContext attribute with name [org.springframework.web.servlet.FrameworkServlet.CONTEXT.dispatcherServlet]
  192. 2017-04-21 18:36:42.048 INFO 2548 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : FrameworkServlet 'dispatcherServlet': initialization completed in 30 ms
  193. 2017-04-21 18:36:42.048 DEBUG 2548 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Servlet 'dispatcherServlet' configured successfully
  194. 2017-04-21 18:36:42.061 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'springSecurityFilterChain'
  195. 2017-04-21 18:36:42.064 DEBUG 2548 --- [nio-8080-exec-1] o.s.security.web.FilterChainProxy : /courses at position 1 of 14 in additional filter chain; firing Filter: 'WebAsyncManagerIntegrationFilter'
  196. 2017-04-21 18:36:42.064 DEBUG 2548 --- [nio-8080-exec-1] o.s.security.web.FilterChainProxy : /courses at position 2 of 14 in additional filter chain; firing Filter: 'SecurityContextPersistenceFilter'
  197. 2017-04-21 18:36:42.065 DEBUG 2548 --- [nio-8080-exec-1] w.c.HttpSessionSecurityContextRepository : No HttpSession currently exists
  198. 2017-04-21 18:36:42.065 DEBUG 2548 --- [nio-8080-exec-1] w.c.HttpSessionSecurityContextRepository : No SecurityContext was available from the HttpSession: null. A new one will be created.
  199. 2017-04-21 18:36:42.066 DEBUG 2548 --- [nio-8080-exec-1] o.s.security.web.FilterChainProxy : /courses at position 3 of 14 in additional filter chain; firing Filter: 'HeaderWriterFilter'
  200. 2017-04-21 18:36:42.067 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.header.writers.HstsHeaderWriter : Not injecting HSTS header since it did not match the requestMatcher org.springframework.security.web.header.writers.HstsHeaderWriter$SecureRequestMatcher@140a697a
  201. 2017-04-21 18:36:42.067 DEBUG 2548 --- [nio-8080-exec-1] o.s.security.web.FilterChainProxy : /courses at position 4 of 14 in additional filter chain; firing Filter: 'LogoutFilter'
  202. 2017-04-21 18:36:42.067 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.web.util.matcher.OrRequestMatcher : Trying to match using Ant [pattern='/logout', GET]
  203. 2017-04-21 18:36:42.067 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.matcher.AntPathRequestMatcher : Checking match of request : '/courses'; against '/logout'
  204. 2017-04-21 18:36:42.067 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.web.util.matcher.OrRequestMatcher : Trying to match using Ant [pattern='/logout', POST]
  205. 2017-04-21 18:36:42.067 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.matcher.AntPathRequestMatcher : Request 'GET /courses' doesn't match 'POST /logout
  206. 2017-04-21 18:36:42.067 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.web.util.matcher.OrRequestMatcher : Trying to match using Ant [pattern='/logout', PUT]
  207. 2017-04-21 18:36:42.067 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.matcher.AntPathRequestMatcher : Request 'GET /courses' doesn't match 'PUT /logout
  208. 2017-04-21 18:36:42.067 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.web.util.matcher.OrRequestMatcher : Trying to match using Ant [pattern='/logout', DELETE]
  209. 2017-04-21 18:36:42.067 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.matcher.AntPathRequestMatcher : Request 'GET /courses' doesn't match 'DELETE /logout
  210. 2017-04-21 18:36:42.068 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.web.util.matcher.OrRequestMatcher : No matches found
  211. 2017-04-21 18:36:42.068 DEBUG 2548 --- [nio-8080-exec-1] o.s.security.web.FilterChainProxy : /courses at position 5 of 14 in additional filter chain; firing Filter: 'UsernamePasswordAuthenticationFilter'
  212. 2017-04-21 18:36:42.068 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.matcher.AntPathRequestMatcher : Request 'GET /courses' doesn't match 'POST /login
  213. 2017-04-21 18:36:42.069 DEBUG 2548 --- [nio-8080-exec-1] o.s.security.web.FilterChainProxy : /courses at position 6 of 14 in additional filter chain; firing Filter: 'DefaultLoginPageGeneratingFilter'
  214. 2017-04-21 18:36:42.069 DEBUG 2548 --- [nio-8080-exec-1] o.s.security.web.FilterChainProxy : /courses at position 7 of 14 in additional filter chain; firing Filter: 'BasicAuthenticationFilter'
  215. 2017-04-21 18:36:42.069 DEBUG 2548 --- [nio-8080-exec-1] o.s.security.web.FilterChainProxy : /courses at position 8 of 14 in additional filter chain; firing Filter: 'BasicAuthenticationFilter'
  216. 2017-04-21 18:36:42.070 DEBUG 2548 --- [nio-8080-exec-1] o.s.security.web.FilterChainProxy : /courses at position 9 of 14 in additional filter chain; firing Filter: 'RequestCacheAwareFilter'
  217. 2017-04-21 18:36:42.070 DEBUG 2548 --- [nio-8080-exec-1] o.s.security.web.FilterChainProxy : /courses at position 10 of 14 in additional filter chain; firing Filter: 'SecurityContextHolderAwareRequestFilter'
  218. 2017-04-21 18:36:42.071 DEBUG 2548 --- [nio-8080-exec-1] o.s.security.web.FilterChainProxy : /courses at position 11 of 14 in additional filter chain; firing Filter: 'AnonymousAuthenticationFilter'
  219. 2017-04-21 18:36:42.072 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.a.AnonymousAuthenticationFilter : Populated SecurityContextHolder with anonymous token: 'org.springframework.security.authentication.AnonymousAuthenticationToken@9055e4a6: Principal: anonymousUser; Credentials: [PROTECTED]; Authenticated: true; Details: org.springframework.security.web.authentication.WebAuthenticationDetails@957e: RemoteIpAddress: 127.0.0.1; SessionId: null; Granted Authorities: ROLE_ANONYMOUS'
  220. 2017-04-21 18:36:42.072 DEBUG 2548 --- [nio-8080-exec-1] o.s.security.web.FilterChainProxy : /courses at position 12 of 14 in additional filter chain; firing Filter: 'SessionManagementFilter'
  221. 2017-04-21 18:36:42.072 DEBUG 2548 --- [nio-8080-exec-1] o.s.security.web.FilterChainProxy : /courses at position 13 of 14 in additional filter chain; firing Filter: 'ExceptionTranslationFilter'
  222. 2017-04-21 18:36:42.072 DEBUG 2548 --- [nio-8080-exec-1] o.s.security.web.FilterChainProxy : /courses at position 14 of 14 in additional filter chain; firing Filter: 'FilterSecurityInterceptor'
  223. 2017-04-21 18:36:42.073 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.matcher.AntPathRequestMatcher : Request '/courses' matched by universal pattern '/**'
  224. 2017-04-21 18:36:42.073 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.a.i.FilterSecurityInterceptor : Secure object: FilterInvocation: URL: /courses; Attributes: [hasRole('ROLE_STUDENT')]
  225. 2017-04-21 18:36:42.073 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.a.i.FilterSecurityInterceptor : Previously Authenticated: org.springframework.security.authentication.AnonymousAuthenticationToken@9055e4a6: Principal: anonymousUser; Credentials: [PROTECTED]; Authenticated: true; Details: org.springframework.security.web.authentication.WebAuthenticationDetails@957e: RemoteIpAddress: 127.0.0.1; SessionId: null; Granted Authorities: ROLE_ANONYMOUS
  226. 2017-04-21 18:36:42.076 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.access.vote.AffirmativeBased : Voter: org.springframework.security.web.access.expression.WebExpressionVoter@ff58f10, returned: -1
  227. 2017-04-21 18:36:42.077 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'delegatingApplicationListener'
  228. 2017-04-21 18:36:42.082 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.a.ExceptionTranslationFilter : Access is denied (user is anonymous); redirecting to authentication entry point
  229.  
  230. org.springframework.security.access.AccessDeniedException: Access is denied
  231. at org.springframework.security.access.vote.AffirmativeBased.decide(AffirmativeBased.java:84) ~[spring-security-core-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  232. at org.springframework.security.access.intercept.AbstractSecurityInterceptor.beforeInvocation(AbstractSecurityInterceptor.java:233) ~[spring-security-core-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  233. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:124) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  234. at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:91) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  235. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  236. at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:114) ~[spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  237. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  238. at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:137) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  239. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  240. at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:111) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  241. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  242. at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:170) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  243. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  244. at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  245. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  246. at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal(BasicAuthenticationFilter.java:158) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  247. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  248. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  249. at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal(BasicAuthenticationFilter.java:158) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  250. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  251. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  252. at org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter.doFilter(DefaultLoginPageGeneratingFilter.java:177) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  253. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  254. at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:200) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  255. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  256. at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:116) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  257. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  258. at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:64) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  259. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  260. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  261. at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:105) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  262. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  263. 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]
  264. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  265. at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:331) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  266. at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:214) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  267. at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:177) [spring-security-web-4.2.2.RELEASE.jar:4.2.2.RELEASE]
  268. at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:346) [spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  269. at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:262) [spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  270. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.11.jar:8.5.11]
  271. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.11.jar:8.5.11]
  272. at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:197) [spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  273. at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:107) [spring-web-4.3.7.RELEASE.jar:4.3.7.RELEASE]
  274. at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:192) [tomcat-embed-core-8.5.11.jar:8.5.11]
  275. at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:165) [tomcat-embed-core-8.5.11.jar:8.5.11]
  276. at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:198) [tomcat-embed-core-8.5.11.jar:8.5.11]
  277. at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:96) [tomcat-embed-core-8.5.11.jar:8.5.11]
  278. at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:474) [tomcat-embed-core-8.5.11.jar:8.5.11]
  279. at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:140) [tomcat-embed-core-8.5.11.jar:8.5.11]
  280. at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79) [tomcat-embed-core-8.5.11.jar:8.5.11]
  281. at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:87) [tomcat-embed-core-8.5.11.jar:8.5.11]
  282. at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:349) [tomcat-embed-core-8.5.11.jar:8.5.11]
  283. at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:783) [tomcat-embed-core-8.5.11.jar:8.5.11]
  284. at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:66) [tomcat-embed-core-8.5.11.jar:8.5.11]
  285. at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:798) [tomcat-embed-core-8.5.11.jar:8.5.11]
  286. at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1434) [tomcat-embed-core-8.5.11.jar:8.5.11]
  287. at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) [tomcat-embed-core-8.5.11.jar:8.5.11]
  288. at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source) [na:1.8.0_121]
  289. at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source) [na:1.8.0_121]
  290. at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) [tomcat-embed-core-8.5.11.jar:8.5.11]
  291. at java.lang.Thread.run(Unknown Source) [na:1.8.0_121]
  292.  
  293. 2017-04-21 18:36:42.083 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.util.matcher.AndRequestMatcher : Trying to match using NegatedRequestMatcher [requestMatcher=Ant [pattern='/**/favicon.ico']]
  294. 2017-04-21 18:36:42.083 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.matcher.AntPathRequestMatcher : Checking match of request : '/courses'; against '/**/favicon.ico'
  295. 2017-04-21 18:36:42.084 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.matcher.NegatedRequestMatcher : matches = true
  296. 2017-04-21 18:36:42.084 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.util.matcher.AndRequestMatcher : Trying to match using NegatedRequestMatcher [requestMatcher=MediaTypeRequestMatcher [contentNegotiationStrategy=org.springframework.web.accept.ContentNegotiationManager@34cbe64f, matchingMediaTypes=[application/json], useEquals=false, ignoredMediaTypes=[*/*]]]
  297. 2017-04-21 18:36:42.091 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : httpRequestMediaTypes=[application/json, text/javascript, */*;q=0.01]
  298. 2017-04-21 18:36:42.092 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : Processing application/json
  299. 2017-04-21 18:36:42.092 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : application/json .isCompatibleWith application/json = true
  300. 2017-04-21 18:36:42.092 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.matcher.NegatedRequestMatcher : matches = false
  301. 2017-04-21 18:36:42.092 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.util.matcher.AndRequestMatcher : Did not match
  302. 2017-04-21 18:36:42.092 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.s.HttpSessionRequestCache : Request not saved as configured RequestMatcher did not match
  303. 2017-04-21 18:36:42.092 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.a.ExceptionTranslationFilter : Calling Authentication entry point.
  304. 2017-04-21 18:36:42.092 DEBUG 2548 --- [nio-8080-exec-1] s.w.a.DelegatingAuthenticationEntryPoint : Trying to match using OrRequestMatcher [requestMatchers=[RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest], AndRequestMatcher [requestMatchers=[NegatedRequestMatcher [requestMatcher=MediaTypeRequestMatcher [contentNegotiationStrategy=org.springframework.web.accept.ContentNegotiationManager@34cbe64f, matchingMediaTypes=[text/html], useEquals=false, ignoredMediaTypes=[]]], MediaTypeRequestMatcher [contentNegotiationStrategy=org.springframework.web.accept.ContentNegotiationManager@34cbe64f, matchingMediaTypes=[application/atom+xml, application/x-www-form-urlencoded, application/json, application/octet-stream, application/xml, multipart/form-data, text/xml], useEquals=false, ignoredMediaTypes=[*/*]]]]]]
  305. 2017-04-21 18:36:42.092 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.web.util.matcher.OrRequestMatcher : Trying to match using RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]
  306. 2017-04-21 18:36:42.093 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.web.util.matcher.OrRequestMatcher : Trying to match using AndRequestMatcher [requestMatchers=[NegatedRequestMatcher [requestMatcher=MediaTypeRequestMatcher [contentNegotiationStrategy=org.springframework.web.accept.ContentNegotiationManager@34cbe64f, matchingMediaTypes=[text/html], useEquals=false, ignoredMediaTypes=[]]], MediaTypeRequestMatcher [contentNegotiationStrategy=org.springframework.web.accept.ContentNegotiationManager@34cbe64f, matchingMediaTypes=[application/atom+xml, application/x-www-form-urlencoded, application/json, application/octet-stream, application/xml, multipart/form-data, text/xml], useEquals=false, ignoredMediaTypes=[*/*]]]]
  307. 2017-04-21 18:36:42.093 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.util.matcher.AndRequestMatcher : Trying to match using NegatedRequestMatcher [requestMatcher=MediaTypeRequestMatcher [contentNegotiationStrategy=org.springframework.web.accept.ContentNegotiationManager@34cbe64f, matchingMediaTypes=[text/html], useEquals=false, ignoredMediaTypes=[]]]
  308. 2017-04-21 18:36:42.093 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : httpRequestMediaTypes=[application/json, text/javascript, */*;q=0.01]
  309. 2017-04-21 18:36:42.093 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : Processing application/json
  310. 2017-04-21 18:36:42.093 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : text/html .isCompatibleWith application/json = false
  311. 2017-04-21 18:36:42.093 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : Processing text/javascript
  312. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : text/html .isCompatibleWith text/javascript = false
  313. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : Processing */*;q=0.01
  314. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : text/html .isCompatibleWith */*;q=0.01 = true
  315. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.matcher.NegatedRequestMatcher : matches = false
  316. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.util.matcher.AndRequestMatcher : Did not match
  317. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.web.util.matcher.OrRequestMatcher : No matches found
  318. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] s.w.a.DelegatingAuthenticationEntryPoint : Trying to match using AndRequestMatcher [requestMatchers=[NegatedRequestMatcher [requestMatcher=RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]], MediaTypeRequestMatcher [contentNegotiationStrategy=org.springframework.web.accept.ContentNegotiationManager@34cbe64f, matchingMediaTypes=[application/xhtml+xml, image/*, text/html, text/plain], useEquals=false, ignoredMediaTypes=[*/*]]]]
  319. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.util.matcher.AndRequestMatcher : Trying to match using NegatedRequestMatcher [requestMatcher=RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]]
  320. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.matcher.NegatedRequestMatcher : matches = true
  321. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.util.matcher.AndRequestMatcher : Trying to match using MediaTypeRequestMatcher [contentNegotiationStrategy=org.springframework.web.accept.ContentNegotiationManager@34cbe64f, matchingMediaTypes=[application/xhtml+xml, image/*, text/html, text/plain], useEquals=false, ignoredMediaTypes=[*/*]]
  322. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : httpRequestMediaTypes=[application/json, text/javascript, */*;q=0.01]
  323. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : Processing application/json
  324. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : application/xhtml+xml .isCompatibleWith application/json = false
  325. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : image/* .isCompatibleWith application/json = false
  326. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : text/html .isCompatibleWith application/json = false
  327. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : text/plain .isCompatibleWith application/json = false
  328. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : Processing text/javascript
  329. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : application/xhtml+xml .isCompatibleWith text/javascript = false
  330. 2017-04-21 18:36:42.094 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : image/* .isCompatibleWith text/javascript = false
  331. 2017-04-21 18:36:42.095 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : text/html .isCompatibleWith text/javascript = false
  332. 2017-04-21 18:36:42.095 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : text/plain .isCompatibleWith text/javascript = false
  333. 2017-04-21 18:36:42.095 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : Processing */*;q=0.01
  334. 2017-04-21 18:36:42.095 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : Ignoring
  335. 2017-04-21 18:36:42.095 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.u.m.MediaTypeRequestMatcher : Did not match any media types
  336. 2017-04-21 18:36:42.095 DEBUG 2548 --- [nio-8080-exec-1] o.s.s.w.util.matcher.AndRequestMatcher : Did not match
  337. 2017-04-21 18:36:42.095 DEBUG 2548 --- [nio-8080-exec-1] s.w.a.DelegatingAuthenticationEntryPoint : No match found. Using default entry point org.springframework.security.web.authentication.DelegatingAuthenticationEntryPoint@67c277a0
  338. 2017-04-21 18:36:42.095 DEBUG 2548 --- [nio-8080-exec-1] s.w.a.DelegatingAuthenticationEntryPoint : Trying to match using RequestHeaderRequestMatcher [expectedHeaderName=X-Requested-With, expectedHeaderValue=XMLHttpRequest]
  339. 2017-04-21 18:36:42.095 DEBUG 2548 --- [nio-8080-exec-1] s.w.a.DelegatingAuthenticationEntryPoint : No match found. Using default entry point org.springframework.security.web.authentication.www.BasicAuthenticationEntryPoint@5835dc7f
  340. 2017-04-21 18:36:42.095 DEBUG 2548 --- [nio-8080-exec-1] w.c.HttpSessionSecurityContextRepository : SecurityContext is empty or contents are anonymous - context will not be stored in HttpSession.
  341. 2017-04-21 18:36:42.096 DEBUG 2548 --- [nio-8080-exec-1] s.s.w.c.SecurityContextPersistenceFilter : SecurityContextHolder now cleared, as request processing completed
  342. 2017-04-21 18:36:42.096 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.c.C.[Tomcat].[localhost] : Processing ErrorPage[errorCode=0, location=/error]
  343. 2017-04-21 18:36:42.106 DEBUG 2548 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : DispatcherServlet with name 'dispatcherServlet' processing GET request for [/error]
  344. 2017-04-21 18:36:42.107 DEBUG 2548 --- [nio-8080-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking up handler method for path /error
  345. 2017-04-21 18:36:42.110 DEBUG 2548 --- [nio-8080-exec-1] s.w.s.m.m.a.RequestMappingHandlerMapping : Returning handler method [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)]
  346. 2017-04-21 18:36:42.111 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'basicErrorController'
  347. 2017-04-21 18:36:42.112 DEBUG 2548 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Last-Modified value for [/error] is: -1
  348. 2017-04-21 18:36:42.183 DEBUG 2548 --- [nio-8080-exec-1] o.s.w.s.m.m.a.HttpEntityMethodProcessor : Written [{timestamp=Fri Apr 21 18:36:42 CEST 2017, status=401, error=Unauthorized, message=Full authentication is required to access this resource, path=/courses}] as "application/json" using [org.springframework.http.converter.json.MappingJackson2HttpMessageConverter@7bb9eb11]
  349. 2017-04-21 18:36:42.184 DEBUG 2548 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Null ModelAndView returned to DispatcherServlet with name 'dispatcherServlet': assuming HandlerAdapter completed request handling
  350. 2017-04-21 18:36:42.185 DEBUG 2548 --- [nio-8080-exec-1] o.s.web.servlet.DispatcherServlet : Successfully completed request
  351. 2017-04-21 18:36:42.186 DEBUG 2548 --- [nio-8080-exec-1] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'delegatingApplicationListener'
  352. 2017-04-21 18:36:42.187 DEBUG 2548 --- [nio-8080-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet] : Disabling the response for further output
  353. 2017-04-21 18:36:42.188 DEBUG 2548 --- [nio-8080-exec-1] o.apache.coyote.http11.Http11Processor : Socket: [org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper@1200b50f:org.apache.tomcat.util.net.NioChannel@7d4bf91d:java.nio.channels.SocketChannel[connected local=/127.0.0.1:8080 remote=/127.0.0.1:50872]], Status in: [OPEN_READ], State out: [CLOSED]
  354. 2017-04-21 18:36:42.190 DEBUG 2548 --- [nio-8080-exec-1] o.apache.tomcat.util.threads.LimitLatch : Counting down[http-nio-8080-exec-1] latch=1
  355. 2017-04-21 18:36:48.563 DEBUG 2548 --- [on(1)-127.0.0.1] sun.rmi.transport.tcp : RMI TCP Connection(1)-127.0.0.1: (port 50822) connection closed
  356. 2017-04-21 18:36:48.564 DEBUG 2548 --- [on(3)-127.0.0.1] sun.rmi.transport.tcp : RMI TCP Connection(3)-127.0.0.1: (port 50822) connection closed
  357. 2017-04-21 18:36:48.564 DEBUG 2548 --- [on(1)-127.0.0.1] sun.rmi.transport.tcp : RMI TCP Connection(1)-127.0.0.1: close connection
  358. 2017-04-21 18:36:48.564 DEBUG 2548 --- [on(3)-127.0.0.1] sun.rmi.transport.tcp : RMI TCP Connection(3)-127.0.0.1: close connection
  359. 2017-04-21 18:36:48.576 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.transport.tcp : RMI TCP Connection(4)-192.168.2.113: (port 50824) connection closed
  360. 2017-04-21 18:36:48.576 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.transport.tcp : RMI TCP Connection(2)-192.168.2.113: (port 50824) connection closed
  361. 2017-04-21 18:36:48.576 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.transport.tcp : RMI TCP Connection(4)-192.168.2.113: close connection
  362. 2017-04-21 18:36:48.576 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.transport.tcp : RMI TCP Connection(2)-192.168.2.113: close connection
  363. 2017-04-21 18:36:52.991 DEBUG 2548 --- [on(5)-127.0.0.1] sun.rmi.transport.tcp : RMI TCP Connection(5)-127.0.0.1: accepted socket from [127.0.0.1:50889]
  364. 2017-04-21 18:36:52.991 DEBUG 2548 --- [on(5)-127.0.0.1] sun.rmi.transport.tcp : RMI TCP Connection(5)-127.0.0.1: (port 50822) op = 80
  365. 2017-04-21 18:36:52.992 DEBUG 2548 --- [on(5)-127.0.0.1] sun.rmi.transport.tcp : RMI TCP Connection(5)-127.0.0.1: (port 50822) op = 84
  366. 2017-04-21 18:36:52.995 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.transport.tcp : RMI TCP Connection(6)-192.168.2.113: accepted socket from [192.168.2.113:50890]
  367. 2017-04-21 18:36:52.995 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.transport.tcp : RMI TCP Connection(6)-192.168.2.113: (port 50824) op = 80
  368. 2017-04-21 18:36:52.996 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.transport.tcp : RMI TCP Connection(6)-192.168.2.113: (port 50824) op = 80
  369. 2017-04-21 18:36:52.998 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.loader : RMI TCP Connection(6)-192.168.2.113: name = "[Ljava.rmi.server.ObjID;", codebase = ""
  370. 2017-04-21 18:36:52.998 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.loader : RMI TCP Connection(6)-192.168.2.113: name = "java.rmi.server.ObjID", codebase = ""
  371. 2017-04-21 18:36:52.999 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.loader : RMI TCP Connection(6)-192.168.2.113: name = "java.rmi.server.UID", codebase = ""
  372. 2017-04-21 18:36:52.999 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.loader : RMI TCP Connection(6)-192.168.2.113: name = "java.rmi.dgc.Lease", codebase = ""
  373. 2017-04-21 18:36:52.999 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.loader : RMI TCP Connection(6)-192.168.2.113: name = "java.rmi.dgc.VMID", codebase = ""
  374. 2017-04-21 18:36:52.999 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.loader : RMI TCP Connection(6)-192.168.2.113: name = "[B", codebase = ""
  375. 2017-04-21 18:36:53.000 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.transport.tcp : RMI TCP Connection(6)-192.168.2.113: (port 50824) op = 84
  376. 2017-04-21 18:36:53.002 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.transport.tcp : RMI TCP Connection(6)-192.168.2.113: (port 50824) op = 80
  377. 2017-04-21 18:36:53.003 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.transport.tcp : RMI TCP Connection(6)-192.168.2.113: (port 50824) op = 80
  378. 2017-04-21 18:36:53.003 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.loader : RMI TCP Connection(6)-192.168.2.113: name = "javax.management.ObjectName", codebase = ""
  379. 2017-04-21 18:36:53.003 DEBUG 2548 --- [)-192.168.2.113] sun.rmi.loader : RMI TCP Connection(6)-192.168.2.113: name = "java.rmi.MarshalledObject", codebase = ""
  380. 2017-04-21 18:36:53.003 INFO 2548 --- [)-192.168.2.113] inMXBeanRegistrar$SpringApplicationAdmin : Application shutdown requested.
  381. 2017-04-21 18:36:53.004 INFO 2548 --- [)-192.168.2.113] ationConfigEmbeddedWebApplicationContext : Closing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@2fd6b6c7: startup date [Fri Apr 21 18:36:19 CEST 2017]; root of context hierarchy
  382. 2017-04-21 18:36:53.004 DEBUG 2548 --- [)-192.168.2.113] o.s.c.e.PropertySourcesPropertyResolver : Found key 'spring.liveBeansView.mbeanDomain' in [systemProperties] with type [String]
  383. 2017-04-21 18:36:53.004 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'delegatingApplicationListener'
  384. 2017-04-21 18:36:53.005 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.s.DefaultListableBeanFactory : Returning cached instance of singleton bean 'lifecycleProcessor'
  385. 2017-04-21 18:36:53.006 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.s.DefaultListableBeanFactory : Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@47caedad: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalRequiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.event.internalEventListenerProcessor,org.springframework.context.event.internalEventListenerFactory,denverApplication,org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory,courseController,exerciseController,lectureController,privilegeController,solutionController,userController,AuthenticationProvider,myUserDetailsService,DDAuthenticationSuccessHandler,securityConfig,userService,org.springframework.security.config.annotation.configuration.ObjectPostProcessorConfiguration,objectPostProcessor,org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration,authenticationManagerBuilder,enableGlobalAuthenticationAutowiredConfigurer,initializeUserDetailsBeanManagerConfigurer,initializeAuthenticationProviderBeanManagerConfigurer,org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration,delegatingApplicationListener,webSecurityExpressionHandler,springSecurityFilterChain,privilegeEvaluator,autowiredWebSecurityConfigurersIgnoreParents,org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration,requestDataValueProcessor,authenticationProvider,encoder,org.springframework.web.servlet.config.annotation.DelegatingWebMvcConfiguration,requestMappingHandlerMapping,mvcPathMatcher,mvcUrlPathHelper,mvcContentNegotiationManager,viewControllerHandlerMapping,beanNameHandlerMapping,resourceHandlerMapping,mvcResourceUrlProvider,defaultServletHandlerMapping,requestMappingHandlerAdapter,mvcConversionService,mvcValidator,mvcUriComponentsContributor,httpRequestHandlerAdapter,simpleControllerHandlerAdapter,handlerExceptionResolver,mvcViewResolver,org.springframework.boot.autoconfigure.AutoConfigurationPackages,org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration,org.springframework.boot.autoconfigure.condition.BeanTypeRegistry,propertySourcesPlaceholderConfigurer,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration,standardJacksonObjectMapperBuilderCustomizer,spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties,org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor,org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor.store,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration,jacksonObjectMapperBuilder,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration,jacksonObjectMapper,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration,jsonComponentModule,org.springframework.boot.autoconfigure.websocket.WebSocketAutoConfiguration$TomcatWebSocketConfiguration,websocketContainerCustomizer,org.springframework.boot.autoconfigure.websocket.WebSocketAutoConfiguration,org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration$EmbeddedTomcat,tomcatEmbeddedServletContainerFactory,org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration,embeddedServletContainerCustomizerBeanPostProcessor,errorPageRegistrarBeanPostProcessor,org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletConfiguration,dispatcherServlet,spring.mvc-org.springframework.boot.autoconfigure.web.WebMvcProperties,org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration,dispatcherServletRegistration,org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration,org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration,jsr303Validator,methodValidationPostProcessor,org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration,error,beanNameViewResolver,org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration,conventionErrorViewResolver,org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration,errorAttributes,basicErrorController,errorPageCustomizer,preserveErrorControllerTargetClassPostProcessor,spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties,org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration,mbeanExporter,objectNamingStrategy,mbeanServer,org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration,springApplicationAdminRegistrar,org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration,spring.jta-org.springframework.boot.autoconfigure.transaction.jta.JtaProperties,org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration,org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration,persistenceExceptionTranslationPostProcessor,org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration,org.springframework.transaction.config.internalTransactionAdvisor,transactionAttributeSource,transactionInterceptor,org.springframework.transaction.config.internalTransactionalEventListenerFactory,org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$TransactionManagementConfiguration,org.springframework.aop.config.internalAutoProxyCreator,org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration,spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties,org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration,platformTransactionManagerCustomizers,spring.transaction-org.springframework.boot.autoconfigure.transaction.TransactionProperties,org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration,gson,org.springframework.boot.autoconfigure.web.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration,stringHttpMessageConverter,spring.http.encoding-org.springframework.boot.autoconfigure.web.HttpEncodingProperties,org.springframework.boot.autoconfigure.web.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration,mappingJackson2HttpMessageConverter,org.springframework.boot.autoconfigure.web.JacksonHttpMessageConvertersConfiguration,org.springframework.boot.autoconfigure.web.GsonHttpMessageConvertersConfiguration,org.springframework.boot.autoconfigure.web.HttpMessageConvertersAutoConfiguration,messageConverters,org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration$GroovyWebConfiguration,groovyMarkupViewResolver,org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration$GroovyMarkupConfiguration,groovyMarkupConfigurer,org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration,spring.groovy.template-org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateProperties,org.springframework.boot.autoconfigure.security.AuthenticationManagerConfiguration,authenticationManager,springBootAuthenticationConfigurerAdapter,authenticationManagerConfigurationListener,org.springframework.boot.autoconfigure.security.BootGlobalAuthenticationConfiguration,bootGlobalAuthenticationConfigurationAdapter,org.springframework.boot.autoconfigure.security.SecurityAutoConfiguration,authenticationEventPublisher,securityProperties,org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration$EntityLinksConfiguration,entityLinksPluginRegistry,controllerEntityLinks,delegatingEntityLinks,org.springframework.hateoas.config.HateoasConfiguration,linkRelationMessageSource,org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration$HypermediaConfiguration,halObjectMapperConfigurer,_halObjectMapper,org.springframework.hateoas.config.HypermediaSupportBeanDefinitionRegistrar$DefaultObjectMapperCustomizer#0,org.springframework.hateoas.config.HypermediaSupportBeanDefinitionRegistrar$Jackson2ModuleRegisteringBeanPostProcessor#0,_linkDiscovererRegistry,org.springframework.hateoas.LinkDiscoverers#0,defaultRelProvider,annotationRelProvider,relProviderPluginRegistry,_relProvider,org.springframework.boot.autoconfigure.hateoas.HypermediaHttpMessageConverterConfiguration,halMessageConverterSupportedMediaTypeCustomizer,org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration,spring.hateoas-org.springframework.boot.autoconfigure.hateoas.HateoasProperties,org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration,spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties,org.springframework.boot.autoconfigure.security.SecurityFilterAutoConfiguration,securityFilterChainRegistration,org.springframework.boot.autoconfigure.web.HttpEncodingAutoConfiguration,characterEncodingFilter,localeCharsetMappingsCustomizer,org.springframework.boot.autoconfigure.web.MultipartAutoConfiguration,multipartConfigElement,multipartResolver,spring.http.multipart-org.springframework.boot.autoconfigure.web.MultipartProperties,org.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration,serverProperties,duplicateServerPropertiesDetector,org.springframework.boot.autoconfigure.web.WebClientAutoConfiguration$RestTemplateConfiguration,restTemplateBuilder,org.springframework.boot.autoconfigure.web.WebClientAutoConfiguration]; root of factory hierarchy
  386. 2017-04-21 18:36:53.006 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean '_linkDiscovererRegistry': [org.springframework.hateoas.LinkDiscoverers#0]
  387. 2017-04-21 18:36:53.006 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean '(inner bean)#2b6fcb9f': [delegatingEntityLinks]
  388. 2017-04-21 18:36:53.007 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.support.DisposableBeanAdapter : Invoking destroy() on bean with name 'controllerEntityLinks'
  389. 2017-04-21 18:36:53.007 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean '(inner bean)#2938127d': [controllerEntityLinks]
  390. 2017-04-21 18:36:53.007 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.support.DisposableBeanAdapter : Invoking destroy() on bean with name 'springApplicationAdminRegistrar'
  391. 2017-04-21 18:36:53.007 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.support.DisposableBeanAdapter : Invoking destroy() on bean with name 'mbeanExporter'
  392. 2017-04-21 18:36:53.008 INFO 2548 --- [)-192.168.2.113] o.s.j.e.a.AnnotationMBeanExporter : Unregistering JMX-exposed beans on shutdown
  393. 2017-04-21 18:36:53.008 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean '(inner bean)#342726f1': [_relProvider]
  394. 2017-04-21 18:36:53.008 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean 'mvcValidator': [requestMappingHandlerAdapter]
  395. 2017-04-21 18:36:53.008 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean 'requestMappingHandlerAdapter': [mvcUriComponentsContributor]
  396. 2017-04-21 18:36:53.008 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.support.DisposableBeanAdapter : Invoking destroy() on bean with name 'mvcValidator'
  397. 2017-04-21 18:36:53.008 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean 'mvcResourceUrlProvider': [requestMappingHandlerMapping]
  398. 2017-04-21 18:36:53.008 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean 'springSecurityFilterChain': [webSecurityExpressionHandler, privilegeEvaluator]
  399. 2017-04-21 18:36:53.008 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.support.DisposableBeanAdapter : Invoking destroy() on bean with name 'springSecurityFilterChain'
  400. 2017-04-21 18:36:53.009 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean 'objectPostProcessor': [org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration, securityConfig, authenticationManagerBuilder, org.springframework.security.config.annotation.web.configuration.WebSecurityConfiguration]
  401. 2017-04-21 18:36:53.009 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean 'org.springframework.security.config.annotation.authentication.configuration.AuthenticationConfiguration': [securityConfig, authenticationManager]
  402. 2017-04-21 18:36:53.009 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.support.DisposableBeanAdapter : Invoking destroy() on bean with name 'objectPostProcessor'
  403. 2017-04-21 18:36:53.009 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.support.DisposableBeanAdapter : Invoking destroy() on bean with name 'characterEncodingFilter'
  404. 2017-04-21 18:36:53.009 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean 'jsr303Validator': [methodValidationPostProcessor]
  405. 2017-04-21 18:36:53.009 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.support.DisposableBeanAdapter : Invoking destroy() on bean with name 'jsr303Validator'
  406. 2017-04-21 18:36:53.009 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.support.DisposableBeanAdapter : Invoking destroy() on bean with name 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor'
  407. 2017-04-21 18:36:53.009 DEBUG 2548 --- [)-192.168.2.113] o.s.b.f.s.DefaultListableBeanFactory : Retrieved dependent beans for bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory': [org.springframework.context.annotation.internalConfigurationAnnotationProcessor]
  408. 2017-04-21 18:36:56.178 DEBUG 2548 --- [pool-1-thread-1] .c.i.DriverManagerConnectionProviderImpl : Connection pool now considered primed; min-size will be maintained
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement