diff --git a/chapter2/pom.xml b/chapter2/pom.xml old mode 100644 new mode 100755 index 121d545..4967e79 --- a/chapter2/pom.xml +++ b/chapter2/pom.xml @@ -14,7 +14,7 @@ org.springframework.boot spring-boot-starter-parent - 1.5.1.RELEASE + 2.4.0 @@ -35,6 +35,12 @@ spring-boot-starter-test test + + + org.springframework.boot + spring-boot-configuration-processor + true + diff --git a/chapter2/src/main/java/com/dudu/Controller/UserController.java b/chapter2/src/main/java/com/dudu/Controller/UserController.java old mode 100644 new mode 100755 index cea4be3..fd44169 --- a/chapter2/src/main/java/com/dudu/Controller/UserController.java +++ b/chapter2/src/main/java/com/dudu/Controller/UserController.java @@ -33,6 +33,7 @@ public class UserController { public String hexo(){ //return configBean.getName()+configBean.getWant(); //return yearhope; - return configBean.getName()+configBean.getWant(); + System.out.println(yearhope); + return configTestBean.getName()+configTestBean.getWant(); } } diff --git a/chapter2/src/main/java/com/dudu/domain/ConfigTestBean.java b/chapter2/src/main/java/com/dudu/domain/ConfigTestBean.java old mode 100644 new mode 100755 index 049dda3..e5baef2 --- a/chapter2/src/main/java/com/dudu/domain/ConfigTestBean.java +++ b/chapter2/src/main/java/com/dudu/domain/ConfigTestBean.java @@ -25,7 +25,7 @@ public void setName(String name) { } public String getWant() { - return want; + return want+"sss"; } public void setWant(String want) { diff --git a/chapter2/src/main/resources/application.properties b/chapter2/src/main/resources/application.properties old mode 100644 new mode 100755 index 289b34d..0862818 --- a/chapter2/src/main/resources/application.properties +++ b/chapter2/src/main/resources/application.properties @@ -1,4 +1,4 @@ -com.dudu.name="\u561F\u561FMD" -com.dudu.want="\u795D\u5927\u5BB6\u9E21\u5E74\u5927\u5409\u5427" +com.dudu.name="MD" +com.dudu.want="TT" com.dudu.yearhope=${com.dudu.name}\u5728\u6B64${com.dudu.want} spring.profiles.active=dev \ No newline at end of file diff --git a/chapter2/src/main/resources/config/application.properties b/chapter2/src/main/resources/config/application.properties old mode 100644 new mode 100755 index 8095dfe..4d70926 --- a/chapter2/src/main/resources/config/application.properties +++ b/chapter2/src/main/resources/config/application.properties @@ -1 +1 @@ -server.port=8888 \ No newline at end of file +#server.port=8888 \ No newline at end of file diff --git a/chapter4/pom.xml b/chapter4/pom.xml old mode 100644 new mode 100755 index d9206d7..b1285e6 --- a/chapter4/pom.xml +++ b/chapter4/pom.xml @@ -14,7 +14,7 @@ org.springframework.boot spring-boot-starter-parent - 1.5.2.RELEASE + 2.4.0 @@ -29,7 +29,10 @@ org.springframework.boot spring-boot-starter-thymeleaf - + + org.springframework.boot + spring-boot-starter-web + org.springframework.boot spring-boot-starter-test @@ -41,7 +44,28 @@ bootstrap 3.3.6 + + org.springframework + spring-web + 5.3.1 + + + org.springframework + spring-webmvc + 5.3.1 + + + junit + junit + 4.12 + test + + + org.springframework.boot + spring-boot-configuration-processor + true + @@ -50,8 +74,15 @@ org.springframework.boot spring-boot-maven-plugin + + org.apache.maven.plugins + maven-war-plugin + 3.0.0 + + false + + - diff --git a/chapter4/src/main/java/com/dudu/controller/LearnResourceController.java b/chapter4/src/main/java/com/dudu/controller/LearnResourceController.java old mode 100644 new mode 100755 index 58c3e75..da16804 --- a/chapter4/src/main/java/com/dudu/controller/LearnResourceController.java +++ b/chapter4/src/main/java/com/dudu/controller/LearnResourceController.java @@ -3,6 +3,7 @@ import com.dudu.domain.LearnResouce; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; import org.springframework.web.servlet.ModelAndView; import java.util.ArrayList; @@ -39,7 +40,8 @@ public ModelAndView index(){ learnList.add(bean); bean =new LearnResouce("林祥纤博客系列","从零开始学Spring Boot ","http://412887952-qq-com.iteye.com/category/356333"); learnList.add(bean); - ModelAndView modelAndView = new ModelAndView("/index"); + ModelAndView modelAndView = new ModelAndView("index"); + System.out.println(learnList); modelAndView.addObject("learnList", learnList); return modelAndView; } @@ -68,7 +70,8 @@ public ModelAndView index2(){ learnList.add(bean); bean =new LearnResouce("林祥纤博客系列","从零开始学Spring Boot ","http://412887952-qq-com.iteye.com/category/356333"); learnList.add(bean); - ModelAndView modelAndView = new ModelAndView("/template"); + ModelAndView modelAndView = new ModelAndView("template"); + System.out.println(learnList); modelAndView.addObject("learnList", learnList); return modelAndView; } diff --git a/chapter4/src/main/resources/application-dev.properties b/chapter4/src/main/resources/application-dev.properties new file mode 100755 index 0000000..7c13d81 --- /dev/null +++ b/chapter4/src/main/resources/application-dev.properties @@ -0,0 +1 @@ +server.port=8008 \ No newline at end of file diff --git a/chapter4/src/main/resources/application-prod.properties b/chapter4/src/main/resources/application-prod.properties new file mode 100755 index 0000000..205ed95 --- /dev/null +++ b/chapter4/src/main/resources/application-prod.properties @@ -0,0 +1 @@ +server.port=8000 \ No newline at end of file diff --git a/chapter4/src/main/resources/application.properties b/chapter4/src/main/resources/application.properties old mode 100644 new mode 100755 index 4b9333a..d12bc4a --- a/chapter4/src/main/resources/application.properties +++ b/chapter4/src/main/resources/application.properties @@ -1 +1,2 @@ -spring.thymeleaf.cache=false \ No newline at end of file +spring.thymeleaf.cache=false +spring.profiles.active=dev \ No newline at end of file diff --git a/chapter4/src/main/resources/rebel.xml b/chapter4/src/main/resources/rebel.xml old mode 100644 new mode 100755 index 6990010..abb71c3 --- a/chapter4/src/main/resources/rebel.xml +++ b/chapter4/src/main/resources/rebel.xml @@ -7,7 +7,7 @@ - + diff --git a/chapter5/pom.xml b/chapter5/pom.xml old mode 100644 new mode 100755 index 500a8ce..8dc4c79 --- a/chapter5/pom.xml +++ b/chapter5/pom.xml @@ -14,7 +14,7 @@ org.springframework.boot spring-boot-starter-parent - 1.5.2.RELEASE + 2.4.0 @@ -62,7 +62,11 @@ spring-boot-starter-test test - + + org.springframework.boot + spring-boot + 2.4.0 + diff --git a/chapter5/src/main/java/com/dudu/Application.java b/chapter5/src/main/java/com/dudu/Application.java old mode 100644 new mode 100755 index 4aae944..043448b --- a/chapter5/src/main/java/com/dudu/Application.java +++ b/chapter5/src/main/java/com/dudu/Application.java @@ -3,7 +3,7 @@ import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.builder.SpringApplicationBuilder; -import org.springframework.boot.web.support.SpringBootServletInitializer; +import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; @SpringBootApplication public class Application extends SpringBootServletInitializer { diff --git a/chapter55/pom.xml b/chapter55/pom.xml old mode 100644 new mode 100755 index 4a0f94d..915d0b6 --- a/chapter55/pom.xml +++ b/chapter55/pom.xml @@ -14,7 +14,7 @@ org.springframework.boot spring-boot-starter-parent - 1.5.2.RELEASE + 2.4.0 diff --git a/chapter55/src/main/java/com/dudu/Application.java b/chapter55/src/main/java/com/dudu/Application.java old mode 100644 new mode 100755 index 4aae944..043448b --- a/chapter55/src/main/java/com/dudu/Application.java +++ b/chapter55/src/main/java/com/dudu/Application.java @@ -3,7 +3,7 @@ import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.builder.SpringApplicationBuilder; -import org.springframework.boot.web.support.SpringBootServletInitializer; +import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; @SpringBootApplication public class Application extends SpringBootServletInitializer { diff --git a/chapter6/pom.xml b/chapter6/pom.xml old mode 100644 new mode 100755 index 35da5ef..ddbdb14 --- a/chapter6/pom.xml +++ b/chapter6/pom.xml @@ -14,7 +14,7 @@ org.springframework.boot spring-boot-starter-parent - 1.5.2.RELEASE + 2.4.0 @@ -30,8 +30,6 @@ spring-boot-starter-thymeleaf - - org.springframework.boot spring-boot-starter @@ -42,6 +40,31 @@ spring-boot-starter-test test + + org.springframework + spring-web + 5.3.1 + + + org.springframework + spring-webmvc + 5.3.1 + + + org.springframework.boot + spring-boot-configuration-processor + true + + + org.springframework.boot + spring-boot-starter-web + + + junit + junit + test + + diff --git a/chapter6/src/main/java/com/dudu/Application.java b/chapter6/src/main/java/com/dudu/Application.java old mode 100644 new mode 100755 index 4f7a593..bc81cd0 --- a/chapter6/src/main/java/com/dudu/Application.java +++ b/chapter6/src/main/java/com/dudu/Application.java @@ -1,6 +1,7 @@ package com.dudu; import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.autoconfigure.SpringBootApplication; @SpringBootApplication diff --git a/chapter6/src/main/java/com/dudu/config/MyWebMvcConfigurerAdapter.java b/chapter6/src/main/java/com/dudu/config/WebMvcConfigurationSupport.java similarity index 66% rename from chapter6/src/main/java/com/dudu/config/MyWebMvcConfigurerAdapter.java rename to chapter6/src/main/java/com/dudu/config/WebMvcConfigurationSupport.java index 40703c4..281efac 100644 --- a/chapter6/src/main/java/com/dudu/config/MyWebMvcConfigurerAdapter.java +++ b/chapter6/src/main/java/com/dudu/config/WebMvcConfigurationSupport.java @@ -1,29 +1,37 @@ package com.dudu.config; import com.dudu.interceptor.MyInterceptor; +import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.ViewControllerRegistry; -import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; +//import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; +import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; /** * Created by tengj on 2017/3/13. */ @Configuration -public class MyWebMvcConfigurerAdapter extends WebMvcConfigurerAdapter { +class MyWebMvcConfigurationSupport extends WebMvcConfigurationSupport { + @Autowired + MyInterceptor myInterceptor; + private static final String[] CLASSPATH_RESOURCE_LOCATIONS = { + //"classpath:/META-INF/resources/", "classpath:/resources/", + "classpath:/static/", "classpath:/public/"}; /** * 配置静态访问资源 + * * @param registry */ @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { //自定义项目内目录 - //registry.addResourceHandler("/my/**").addResourceLocations("classpath:/my/"); + registry.addResourceHandler("/**").addResourceLocations(CLASSPATH_RESOURCE_LOCATIONS); //指向外部目录 - registry.addResourceHandler("/my/**").addResourceLocations("file:E:/my/"); + //registry.addResourceHandler("/my/**").addResourceLocations("file:E:/my/"); super.addResourceHandlers(registry); } @@ -36,18 +44,20 @@ public void addResourceHandlers(ResourceHandlerRegistry registry) { @Override public void addViewControllers(ViewControllerRegistry registry) { registry.addViewController("/toLogin").setViewName("login"); + registry.addViewController("/hi").setViewName("login"); super.addViewControllers(registry); } /** * 拦截器 + * * @param registry */ @Override public void addInterceptors(InterceptorRegistry registry) { // addPathPatterns 用于添加拦截规则 // excludePathPatterns 用户排除拦截 - registry.addInterceptor(new MyInterceptor()).addPathPatterns("/**").excludePathPatterns("/toLogin","/login"); + registry.addInterceptor(myInterceptor).addPathPatterns("/hi").excludePathPatterns("/toLogin", "/login"); super.addInterceptors(registry); } } diff --git a/chapter6/src/main/java/com/dudu/interceptor/MyInterceptor.java b/chapter6/src/main/java/com/dudu/interceptor/MyInterceptor.java old mode 100644 new mode 100755 index 4b59e00..a039ec9 --- a/chapter6/src/main/java/com/dudu/interceptor/MyInterceptor.java +++ b/chapter6/src/main/java/com/dudu/interceptor/MyInterceptor.java @@ -1,6 +1,7 @@ package com.dudu.interceptor; import com.dudu.domain.User; +import org.springframework.stereotype.Component; import org.springframework.web.method.HandlerMethod; import org.springframework.web.servlet.HandlerInterceptor; import org.springframework.web.servlet.ModelAndView; @@ -12,6 +13,7 @@ /** * Created by tengj on 2017/3/29. */ +@Component public class MyInterceptor implements HandlerInterceptor { @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { @@ -52,6 +54,6 @@ public void postHandle(HttpServletRequest request, HttpServletResponse response, @Override public void afterCompletion(HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex) throws Exception { - + System.out.println("done"); } } diff --git a/chapter6/src/main/resources/application.properties b/chapter6/src/main/resources/application.properties old mode 100644 new mode 100755 index bad5b5f..a130973 --- a/chapter6/src/main/resources/application.properties +++ b/chapter6/src/main/resources/application.properties @@ -1,2 +1,3 @@ # \u9ED8\u8BA4\u503C\u4E3A /** #spring.mvc.static-path-pattern=/dudu/** +server.port=8080 diff --git a/chapter7-1/lib/javax.ejb.jar b/chapter7-1/lib/javax.ejb.jar new file mode 100755 index 0000000..4ebf5ec Binary files /dev/null and b/chapter7-1/lib/javax.ejb.jar differ diff --git a/chapter7-1/lib/javax.jms.jar b/chapter7-1/lib/javax.jms.jar new file mode 100755 index 0000000..d31451a Binary files /dev/null and b/chapter7-1/lib/javax.jms.jar differ diff --git a/chapter7-1/lib/javax.persistence.jar b/chapter7-1/lib/javax.persistence.jar new file mode 100755 index 0000000..21d80e0 Binary files /dev/null and b/chapter7-1/lib/javax.persistence.jar differ diff --git a/chapter7-1/lib/javax.resource.jar b/chapter7-1/lib/javax.resource.jar new file mode 100755 index 0000000..696a234 Binary files /dev/null and b/chapter7-1/lib/javax.resource.jar differ diff --git a/chapter7-1/lib/javax.servlet.jar b/chapter7-1/lib/javax.servlet.jar new file mode 100755 index 0000000..0519e4a Binary files /dev/null and b/chapter7-1/lib/javax.servlet.jar differ diff --git a/chapter7-1/lib/javax.servlet.jsp.jar b/chapter7-1/lib/javax.servlet.jsp.jar new file mode 100755 index 0000000..9c0631c Binary files /dev/null and b/chapter7-1/lib/javax.servlet.jsp.jar differ diff --git a/chapter7-1/lib/javax.servlet.jsp.jstl.jar b/chapter7-1/lib/javax.servlet.jsp.jstl.jar new file mode 100755 index 0000000..7be17cc Binary files /dev/null and b/chapter7-1/lib/javax.servlet.jsp.jstl.jar differ diff --git a/chapter7-1/lib/javax.transaction.jar b/chapter7-1/lib/javax.transaction.jar new file mode 100755 index 0000000..729c695 Binary files /dev/null and b/chapter7-1/lib/javax.transaction.jar differ diff --git a/chapter7-1/logback.2020-12-09.log b/chapter7-1/logback.2020-12-09.log new file mode 100755 index 0000000..e1b75ad --- /dev/null +++ b/chapter7-1/logback.2020-12-09.log @@ -0,0 +1,4266 @@ +15:32:19.865 logback [main] INFO com.dudu.Application - Starting Application using Java 1.8.0_271 on smart-PC with PID 28526 (/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes started by smart in /media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1) +15:32:19.868 logback [main] INFO com.dudu.Application - No active profile set, falling back to default profiles: default +15:32:20.412 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port(s): 8080 (http) +15:32:20.418 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +15:32:20.418 logback [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +15:32:20.418 logback [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.39] +15:32:20.455 logback [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +15:32:20.455 logback [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 556 ms +15:32:20.677 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +15:32:20.686 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port(s): 8080 (http) with context path '' +15:32:20.693 logback [main] INFO com.dudu.Application - Started Application in 1.217 seconds (JVM running for 1.581) +15:32:39.498 logback [http-nio-8080-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +15:32:39.498 logback [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +15:32:39.499 logback [http-nio-8080-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +15:33:01.470 logback [http-nio-8080-exec-4] INFO com.dudu.controller.LearnController - 日志输出 info +15:33:01.471 logback [http-nio-8080-exec-4] WARN com.dudu.controller.LearnController - 日志输出 warn +15:33:01.471 logback [http-nio-8080-exec-4] ERROR com.dudu.controller.LearnController - 日志输出 error +15:34:38.044 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'configurationProperties' +15:34:38.046 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'servletConfigInitParams' +15:34:38.046 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'servletContextInitParams' +15:34:38.046 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'systemProperties' +15:34:38.046 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'systemEnvironment' +15:34:38.046 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'random' +15:34:38.046 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.046 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.profiles.active' in any property source +15:34:38.046 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'configurationProperties' +15:34:38.046 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'servletConfigInitParams' +15:34:38.046 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'servletContextInitParams' +15:34:38.047 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'systemProperties' +15:34:38.047 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'systemEnvironment' +15:34:38.047 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'random' +15:34:38.047 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.047 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.profiles.default' in any property source +15:34:38.048 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'configurationProperties' +15:34:38.048 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'servletConfigInitParams' +15:34:38.048 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'servletContextInitParams' +15:34:38.048 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'systemProperties' +15:34:38.048 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'systemEnvironment' +15:34:38.048 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'random' +15:34:38.048 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.048 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.profiles.active' in any property source +15:34:38.048 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'configurationProperties' +15:34:38.048 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'servletConfigInitParams' +15:34:38.048 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'servletContextInitParams' +15:34:38.049 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'systemProperties' +15:34:38.049 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'systemEnvironment' +15:34:38.049 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'random' +15:34:38.049 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.049 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.profiles.default' in any property source +15:34:38.049 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'configurationProperties' +15:34:38.049 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'servletConfigInitParams' +15:34:38.049 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'servletContextInitParams' +15:34:38.049 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'systemProperties' +15:34:38.049 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'systemEnvironment' +15:34:38.049 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'random' +15:34:38.049 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.049 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.profiles.active' in any property source +15:34:38.050 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'configurationProperties' +15:34:38.050 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'servletConfigInitParams' +15:34:38.050 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'servletContextInitParams' +15:34:38.050 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'systemProperties' +15:34:38.050 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'systemEnvironment' +15:34:38.050 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'random' +15:34:38.050 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.050 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.profiles.default' in any property source +15:34:38.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'logging.register-shutdown-hook' in PropertySource 'configurationProperties' +15:34:38.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'logging.register-shutdown-hook' in PropertySource 'servletConfigInitParams' +15:34:38.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'logging.register-shutdown-hook' in PropertySource 'servletContextInitParams' +15:34:38.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'logging.register-shutdown-hook' in PropertySource 'systemProperties' +15:34:38.053 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'logging.register-shutdown-hook' in PropertySource 'systemEnvironment' +15:34:38.053 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'logging.register-shutdown-hook' in PropertySource 'random' +15:34:38.053 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'logging.register-shutdown-hook' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.053 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'logging.register-shutdown-hook' in any property source +15:34:38.055 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'context.listener.classes' in PropertySource 'configurationProperties' +15:34:38.055 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'context.listener.classes' in PropertySource 'servletConfigInitParams' +15:34:38.055 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'context.listener.classes' in PropertySource 'servletContextInitParams' +15:34:38.055 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'context.listener.classes' in PropertySource 'systemProperties' +15:34:38.056 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'context.listener.classes' in PropertySource 'systemEnvironment' +15:34:38.057 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'context.listener.classes' in PropertySource 'random' +15:34:38.057 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'context.listener.classes' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.057 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'context.listener.classes' in any property source +15:34:38.057 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.mandatory-file-encoding' in PropertySource 'configurationProperties' +15:34:38.058 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.mandatory-file-encoding' in PropertySource 'servletConfigInitParams' +15:34:38.058 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.mandatory-file-encoding' in PropertySource 'servletContextInitParams' +15:34:38.059 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.mandatory-file-encoding' in PropertySource 'systemProperties' +15:34:38.059 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.mandatory-file-encoding' in PropertySource 'systemEnvironment' +15:34:38.059 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.mandatory-file-encoding' in PropertySource 'random' +15:34:38.059 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.mandatory-file-encoding' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.059 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.mandatory-file-encoding' in any property source +15:34:38.060 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.beaninfo.ignore' in PropertySource 'configurationProperties' +15:34:38.062 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.beaninfo.ignore' in PropertySource 'servletConfigInitParams' +15:34:38.062 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.beaninfo.ignore' in PropertySource 'servletContextInitParams' +15:34:38.062 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.beaninfo.ignore' in PropertySource 'systemProperties' +15:34:38.062 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.beaninfo.ignore' in PropertySource 'systemEnvironment' +15:34:38.062 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.beaninfo.ignore' in PropertySource 'random' +15:34:38.062 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.beaninfo.ignore' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.062 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.beaninfo.ignore' in any property source +15:34:38.063 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.banner.image.location' in PropertySource 'configurationProperties' +15:34:38.064 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.banner.image.location' in PropertySource 'servletConfigInitParams' +15:34:38.064 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.banner.image.location' in PropertySource 'servletContextInitParams' +15:34:38.064 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.banner.image.location' in PropertySource 'systemProperties' +15:34:38.064 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.banner.image.location' in PropertySource 'systemEnvironment' +15:34:38.064 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.banner.image.location' in PropertySource 'random' +15:34:38.064 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.banner.image.location' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.064 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.banner.image.location' in any property source +15:34:38.065 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.banner.location' in PropertySource 'configurationProperties' +15:34:38.066 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.banner.location' in PropertySource 'servletConfigInitParams' +15:34:38.066 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.banner.location' in PropertySource 'servletContextInitParams' +15:34:38.066 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.banner.location' in PropertySource 'systemProperties' +15:34:38.066 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.banner.location' in PropertySource 'systemEnvironment' +15:34:38.066 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.banner.location' in PropertySource 'random' +15:34:38.066 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.banner.location' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.066 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.banner.location' in any property source +15:34:38.109 logback [main] TRACE o.s.c.a.ClassPathBeanDefinitionScanner - JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning +15:34:38.112 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'context.initializer.classes' in PropertySource 'configurationProperties' +15:34:38.113 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'context.initializer.classes' in PropertySource 'servletConfigInitParams' +15:34:38.113 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'context.initializer.classes' in PropertySource 'servletContextInitParams' +15:34:38.113 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'context.initializer.classes' in PropertySource 'systemProperties' +15:34:38.113 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'context.initializer.classes' in PropertySource 'systemEnvironment' +15:34:38.113 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'context.initializer.classes' in PropertySource 'random' +15:34:38.113 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'context.initializer.classes' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.113 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'context.initializer.classes' in any property source +15:34:38.115 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.name' in PropertySource 'configurationProperties' +15:34:38.116 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.name' in PropertySource 'servletConfigInitParams' +15:34:38.116 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.name' in PropertySource 'servletContextInitParams' +15:34:38.116 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.name' in PropertySource 'systemProperties' +15:34:38.116 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.name' in PropertySource 'systemEnvironment' +15:34:38.116 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.name' in PropertySource 'random' +15:34:38.116 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.name' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.117 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.application.name' in any property source +15:34:38.124 logback [main] INFO com.dudu.Application - Starting Application using Java 1.8.0_271 on smart-PC with PID 31770 (/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes started by smart in /media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1) +15:34:38.124 logback [main] DEBUG com.dudu.Application - Running with Spring Boot v2.4.0, Spring v5.3.1 +15:34:38.124 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'configurationProperties' +15:34:38.125 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'servletConfigInitParams' +15:34:38.125 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'servletContextInitParams' +15:34:38.125 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'systemProperties' +15:34:38.125 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'systemEnvironment' +15:34:38.125 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'random' +15:34:38.125 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.active' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.125 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.profiles.active' in any property source +15:34:38.125 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'configurationProperties' +15:34:38.128 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'servletConfigInitParams' +15:34:38.128 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'servletContextInitParams' +15:34:38.128 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'systemProperties' +15:34:38.128 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'systemEnvironment' +15:34:38.128 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'random' +15:34:38.128 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.profiles.default' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.128 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.profiles.default' in any property source +15:34:38.129 logback [main] INFO com.dudu.Application - No active profile set, falling back to default profiles: default +15:34:38.129 logback [main] DEBUG o.s.boot.SpringApplication - Loading source class com.dudu.Application +15:34:38.134 logback [main] TRACE o.s.c.a.ClassPathBeanDefinitionScanner - JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning +15:34:38.160 logback [main] TRACE o.s.b.env.EnvironmentPostProcessor - RandomValuePropertySource add to Environment +15:34:38.160 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentPostProcessor - Post-processing environment to add config data +15:34:38.160 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Building config data environment contributors +15:34:38.160 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Creating wrapped config data contributor for 'configurationProperties' +15:34:38.160 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Creating wrapped config data contributor for 'servletConfigInitParams' +15:34:38.161 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Creating wrapped config data contributor for 'servletContextInitParams' +15:34:38.161 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Creating wrapped config data contributor for 'systemProperties' +15:34:38.161 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Creating wrapped config data contributor for 'systemEnvironment' +15:34:38.161 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Creating wrapped config data contributor for 'random' +15:34:38.161 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Adding initial config data import from location 'optional:file:./config/' +15:34:38.161 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Adding initial config data import from location 'optional:file:./config/*/' +15:34:38.161 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Adding initial config data import from location 'optional:file:./' +15:34:38.161 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Adding initial config data import from location 'optional:classpath:/config/' +15:34:38.161 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Adding initial config data import from location 'optional:classpath:/' +15:34:38.162 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Processing initial config data environment contributors without activation context +15:34:38.162 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processing imports for phase BEFORE_PROFILE_ACTIVATION. no activation context +15:34:38.162 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processing imports [optional:file:./config/] +15:34:38.162 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/application.properties +15:34:38.162 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/application.xml +15:34:38.162 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/application.yml +15:34:38.162 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/application.yaml +15:34:38.162 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Nothing imported +15:34:38.162 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processing imports [optional:file:./config/*/] +15:34:38.162 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/*/application.properties +15:34:38.162 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/*/application.xml +15:34:38.162 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/*/application.yml +15:34:38.163 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/*/application.yaml +15:34:38.163 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Nothing imported +15:34:38.163 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processing imports [optional:file:./] +15:34:38.163 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./application.properties +15:34:38.163 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./application.xml +15:34:38.163 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./application.yml +15:34:38.163 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./application.yaml +15:34:38.163 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Nothing imported +15:34:38.163 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processing imports [optional:classpath:/config/] +15:34:38.163 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/config/application.properties +15:34:38.163 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/config/application.xml +15:34:38.164 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/config/application.yml +15:34:38.164 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/config/application.yaml +15:34:38.164 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Nothing imported +15:34:38.164 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processing imports [optional:classpath:/] +15:34:38.164 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/application.xml +15:34:38.164 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/application.yml +15:34:38.165 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/application.yaml +15:34:38.165 logback [main] TRACE o.s.b.c.config.ConfigDataLoaders - Loading class path resource [application.properties] using loader org.springframework.boot.context.config.StandardConfigDataLoader +15:34:38.166 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Imported 1 resource [class path resource [application.properties]] +15:34:38.166 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processed imports for of 5 contributors +15:34:38.166 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Creating config data activation context from initial contributions +15:34:38.166 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Processing config data environment contributors with initial activation context +15:34:38.168 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processing imports for phase BEFORE_PROFILE_ACTIVATION. [ConfigDataActivationContext@1a942c18 cloudPlatform = [null], profiles = [null]] +15:34:38.168 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processed imports for of 0 contributors +15:34:38.168 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Deducing profiles from current config data environment contributors +15:34:38.168 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Processing config data environment contributors with profile activation context +15:34:38.168 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processing imports for phase AFTER_PROFILE_ACTIVATION. [ConfigDataActivationContext@55a147cc cloudPlatform = [null], profiles = [Profiles@71ba6d4e active = '[]', default = '[default]', accepted = '[default]']] +15:34:38.168 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processing imports [optional:file:./config/] +15:34:38.168 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/application.properties +15:34:38.168 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/application.xml +15:34:38.169 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/application.yml +15:34:38.169 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/application.yaml +15:34:38.169 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/application-default.properties +15:34:38.169 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/application-default.xml +15:34:38.170 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/application-default.yml +15:34:38.170 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/application-default.yaml +15:34:38.170 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Nothing imported +15:34:38.170 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processing imports [optional:file:./config/*/] +15:34:38.170 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/*/application.properties +15:34:38.171 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/*/application.xml +15:34:38.171 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/*/application.yml +15:34:38.171 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/*/application.yaml +15:34:38.171 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/*/application-default.properties +15:34:38.171 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/*/application-default.xml +15:34:38.171 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/*/application-default.yml +15:34:38.171 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./config/*/application-default.yaml +15:34:38.172 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Nothing imported +15:34:38.172 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processing imports [optional:file:./] +15:34:38.172 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./application.properties +15:34:38.172 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./application.xml +15:34:38.172 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./application.yml +15:34:38.172 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./application.yaml +15:34:38.172 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./application-default.properties +15:34:38.173 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./application-default.xml +15:34:38.173 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./application-default.yml +15:34:38.173 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource file:./application-default.yaml +15:34:38.173 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Nothing imported +15:34:38.173 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processing imports [optional:classpath:/config/] +15:34:38.173 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/config/application.properties +15:34:38.173 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/config/application.xml +15:34:38.173 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/config/application.yml +15:34:38.174 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/config/application.yaml +15:34:38.174 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/config/application-default.properties +15:34:38.174 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/config/application-default.xml +15:34:38.174 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/config/application-default.yml +15:34:38.174 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/config/application-default.yaml +15:34:38.174 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Nothing imported +15:34:38.174 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processing imports [optional:classpath:/] +15:34:38.174 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/application.xml +15:34:38.174 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/application.yml +15:34:38.174 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/application.yaml +15:34:38.174 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/application-default.properties +15:34:38.174 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/application-default.xml +15:34:38.175 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/application-default.yml +15:34:38.175 logback [main] TRACE o.s.b.c.c.ConfigDataLocationResolver - Skipping missing resource classpath:/application-default.yaml +15:34:38.175 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Nothing imported +15:34:38.175 logback [main] TRACE o.s.b.c.c.ConfigDataEnvironmentContributors - Processed imports for of 5 contributors +15:34:38.175 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Applying config data environment contributions +15:34:38.175 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Adding imported property source 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.175 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Setting default profiles: [default] +15:34:38.175 logback [main] TRACE o.s.b.c.config.ConfigDataEnvironment - Setting active profiles: [] +15:34:38.176 logback [main] TRACE o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - Refreshing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@68e965f5, started on Wed Dec 09 15:34:38 CST 2020 +15:34:38.187 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Registering scope 'request' with implementation [org.springframework.web.context.request.RequestScope@4be29ed9] +15:34:38.188 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Registering scope 'session' with implementation [org.springframework.web.context.request.SessionScope@53fb3dab] +15:34:38.196 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' +15:34:38.196 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' +15:34:38.198 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' to allow for resolving potential circular references +15:34:38.205 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' +15:34:38.205 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' +15:34:38.205 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' to allow for resolving potential circular references +15:34:38.206 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' +15:34:38.208 logback [main] TRACE o.s.c.i.s.SpringFactoriesLoader - Loaded [org.springframework.beans.BeanInfoFactory] names: [org.springframework.beans.ExtendedBeanInfoFactory] +15:34:38.208 logback [main] TRACE o.s.beans.CachedIntrospectionResults - Getting BeanInfo for class [org.springframework.context.annotation.ConfigurationClassPostProcessor] +15:34:38.211 logback [main] TRACE o.s.beans.CachedIntrospectionResults - Caching PropertyDescriptors for class [org.springframework.context.annotation.ConfigurationClassPostProcessor] +15:34:38.211 logback [main] TRACE o.s.beans.CachedIntrospectionResults - Found bean property 'applicationStartup' of type [org.springframework.core.metrics.ApplicationStartup] +15:34:38.212 logback [main] TRACE o.s.beans.CachedIntrospectionResults - Found bean property 'beanClassLoader' of type [java.lang.ClassLoader] +15:34:38.212 logback [main] TRACE o.s.beans.CachedIntrospectionResults - Found bean property 'beanNameGenerator' of type [org.springframework.beans.factory.support.BeanNameGenerator] +15:34:38.212 logback [main] TRACE o.s.beans.CachedIntrospectionResults - Found bean property 'class' of type [java.lang.Class] +15:34:38.213 logback [main] TRACE o.s.beans.CachedIntrospectionResults - Found bean property 'environment' of type [org.springframework.core.env.Environment] +15:34:38.213 logback [main] TRACE o.s.beans.CachedIntrospectionResults - Found bean property 'metadataReaderFactory' of type [org.springframework.core.type.classreading.MetadataReaderFactory] +15:34:38.213 logback [main] TRACE o.s.beans.CachedIntrospectionResults - Found bean property 'order' of type [int] +15:34:38.213 logback [main] TRACE o.s.beans.CachedIntrospectionResults - Found bean property 'problemReporter' of type [org.springframework.beans.factory.parsing.ProblemReporter] +15:34:38.213 logback [main] TRACE o.s.beans.CachedIntrospectionResults - Found bean property 'resourceLoader' of type [org.springframework.core.io.ResourceLoader] +15:34:38.213 logback [main] TRACE o.s.beans.CachedIntrospectionResults - Found bean property 'sourceExtractor' of type [org.springframework.beans.factory.parsing.SourceExtractor] +15:34:38.219 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' +15:34:38.226 logback [main] TRACE o.s.c.a.ClassPathBeanDefinitionScanner - JSR-250 'javax.annotation.ManagedBean' found and supported for component scanning +15:34:38.228 logback [main] TRACE o.s.c.i.s.PathMatchingResourcePatternResolver - Resolved classpath location [com/dudu/] to resources [URL [file:/media/smart/377F3B312C263A87/%e9%a1%b9%e7%9b%ae/SpringBootDemo/chapter7-1/target/classes/com/dudu/]] +15:34:38.228 logback [main] TRACE o.s.c.i.s.PathMatchingResourcePatternResolver - Looking for matching resources in directory tree [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu] +15:34:38.229 logback [main] TRACE o.s.c.i.s.PathMatchingResourcePatternResolver - Searching directory [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu] for files matching pattern [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/**/*.class] +15:34:38.230 logback [main] TRACE o.s.c.i.s.PathMatchingResourcePatternResolver - Searching directory [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/config] for files matching pattern [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/**/*.class] +15:34:38.230 logback [main] TRACE o.s.c.i.s.PathMatchingResourcePatternResolver - Searching directory [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/controller] for files matching pattern [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/**/*.class] +15:34:38.231 logback [main] TRACE o.s.c.i.s.PathMatchingResourcePatternResolver - Searching directory [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/domain] for files matching pattern [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/**/*.class] +15:34:38.232 logback [main] TRACE o.s.c.i.s.PathMatchingResourcePatternResolver - Searching directory [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/interceptor] for files matching pattern [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/**/*.class] +15:34:38.232 logback [main] TRACE o.s.c.i.s.PathMatchingResourcePatternResolver - Resolved location pattern [classpath*:com/dudu/**/*.class] to resources [file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/Application.class], file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/config/MyWebMvcConfigurationSupport.class], file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/controller/LearnController.class], file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/domain/LearnResouce.class], file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/domain/User.class], file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/interceptor/MyInterceptor.class]] +15:34:38.233 logback [main] TRACE o.s.c.a.ClassPathBeanDefinitionScanner - Scanning file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/Application.class] +15:34:38.239 logback [main] TRACE o.s.c.a.ClassPathBeanDefinitionScanner - Ignored because not matching any filter: file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/Application.class] +15:34:38.239 logback [main] TRACE o.s.c.a.ClassPathBeanDefinitionScanner - Scanning file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/config/MyWebMvcConfigurationSupport.class] +15:34:38.241 logback [main] DEBUG o.s.c.a.ClassPathBeanDefinitionScanner - Identified candidate component class: file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/config/MyWebMvcConfigurationSupport.class] +15:34:38.241 logback [main] TRACE o.s.c.a.ClassPathBeanDefinitionScanner - Scanning file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/controller/LearnController.class] +15:34:38.245 logback [main] DEBUG o.s.c.a.ClassPathBeanDefinitionScanner - Identified candidate component class: file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/controller/LearnController.class] +15:34:38.245 logback [main] TRACE o.s.c.a.ClassPathBeanDefinitionScanner - Scanning file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/domain/LearnResouce.class] +15:34:38.245 logback [main] TRACE o.s.c.a.ClassPathBeanDefinitionScanner - Ignored because not matching any filter: file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/domain/LearnResouce.class] +15:34:38.245 logback [main] TRACE o.s.c.a.ClassPathBeanDefinitionScanner - Scanning file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/domain/User.class] +15:34:38.246 logback [main] TRACE o.s.c.a.ClassPathBeanDefinitionScanner - Ignored because not matching any filter: file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/domain/User.class] +15:34:38.246 logback [main] TRACE o.s.c.a.ClassPathBeanDefinitionScanner - Scanning file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/interceptor/MyInterceptor.class] +15:34:38.246 logback [main] DEBUG o.s.c.a.ClassPathBeanDefinitionScanner - Identified candidate component class: file [/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes/com/dudu/interceptor/MyInterceptor.class] +15:34:38.258 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.boot.enableautoconfiguration' in PropertySource 'configurationProperties' +15:34:38.258 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.boot.enableautoconfiguration' in PropertySource 'servletConfigInitParams' +15:34:38.258 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.boot.enableautoconfiguration' in PropertySource 'servletContextInitParams' +15:34:38.258 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.boot.enableautoconfiguration' in PropertySource 'systemProperties' +15:34:38.258 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.boot.enableautoconfiguration' in PropertySource 'systemEnvironment' +15:34:38.258 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.boot.enableautoconfiguration' in PropertySource 'random' +15:34:38.258 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.boot.enableautoconfiguration' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.258 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.boot.enableautoconfiguration' in any property source +15:34:38.259 logback [main] TRACE o.s.c.i.s.SpringFactoriesLoader - Loaded [org.springframework.boot.autoconfigure.AutoConfigurationImportFilter] names: [org.springframework.boot.autoconfigure.condition.OnBeanCondition, org.springframework.boot.autoconfigure.condition.OnClassCondition, org.springframework.boot.autoconfigure.condition.OnWebApplicationCondition] +15:34:38.266 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.289 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.amqp.RabbitAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' +15:34:38.289 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.batch.BatchAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.cassandra.CassandraAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.couchbase.CouchbaseAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.cassandra.CassandraDataAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.cassandra.CassandraReactiveDataAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.cassandra.CassandraReactiveRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.cassandra.CassandraRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.couchbase.CouchbaseDataAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.couchbase.CouchbaseReactiveDataAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.couchbase.CouchbaseReactiveRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.couchbase.CouchbaseRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchDataAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.core.ElasticsearchRestTemplate' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.elasticsearch.ElasticsearchRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.elasticsearch.client.Client' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.elasticsearch.ReactiveElasticsearchRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.reactive.ReactiveElasticsearchClient' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.elasticsearch.ReactiveElasticsearchRestClientAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'reactor.netty.http.client.HttpClient' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.jdbc.JdbcRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.jpa.JpaRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.data.jpa.repository.JpaRepository' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.ldap.LdapRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' +15:34:38.290 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.mongo.MongoReactiveDataAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.mongo.MongoReactiveRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.mongo.MongoRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.neo4j.Neo4jDataAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.neo4j.Neo4jReactiveDataAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.neo4j.Neo4jReactiveRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.neo4j.Neo4jRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.solr.SolrRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.apache.solr.client.solrj.SolrClient' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.r2dbc.R2dbcDataAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.r2dbc.R2dbcRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.redis.RedisAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.redis.RedisReactiveAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.redis.RedisRepositoriesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.rest.RepositoryRestMvcAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.data.web.SpringDataWebAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.data.web.PageableHandlerMethodArgumentResolver' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.elasticsearch.ElasticsearchRestClientAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestHighLevelClient' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' +15:34:38.291 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'freemarker.template.Configuration' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.gson.GsonAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.google.gson.Gson' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.h2.H2ConsoleAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.h2.server.web.WebServlet' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.hazelcast.HazelcastAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.hazelcast.HazelcastJpaDependencyAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.http.codec.CodecsAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.influx.InfluxDbAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.integration.IntegrationAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.jdbc.core.JdbcTemplate' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jdbc.JndiDataSourceAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jdbc.XADataSourceAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'javax.transaction.TransactionManager' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.jdbc.core.JdbcTemplate' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jms.JmsAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'javax.jms.Message' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jms.JndiConnectionFactoryAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jms.activemq.ActiveMQAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'javax.jms.ConnectionFactory' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jms.artemis.ArtemisAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'javax.jms.ConnectionFactory' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jersey.JerseyAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jooq.JooqAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.jooq.DSLContext' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jsonb.JsonbAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'javax.json.bind.Jsonb' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.kafka.KafkaAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.ldap.embedded.EmbeddedLdapAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' +15:34:38.292 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.ldap.LdapAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.liquibase.LiquibaseAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.mail.MailSenderAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'javax.mail.internet.MimeMessage' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.mongo.embedded.EmbeddedMongoAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.mongo.MongoReactiveAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.mustache.MustacheAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.neo4j.Neo4jAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'javax.persistence.EntityManager' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.quartz.QuartzAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.quartz.Scheduler' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.r2dbc.R2dbcAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.r2dbc.R2dbcTransactionManagerAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.rsocket.RSocketMessagingAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'io.rsocket.RSocket' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.rsocket.RSocketRequesterAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'io.rsocket.RSocket' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.rsocket.RSocketServerAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.rsocket.RSocketStrategiesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.security.servlet.UserDetailsServiceAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.security.servlet.SecurityFilterAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.security.reactive.ReactiveSecurityAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.security.reactive.ReactiveUserDetailsServiceAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.security.rsocket.RSocketSecurityAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.security.saml2.Saml2RelyingPartyAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' +15:34:38.293 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.sendgrid.SendGridAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.session.SessionAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.session.Session' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.security.oauth2.client.servlet.OAuth2ClientAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.security.oauth2.client.reactive.ReactiveOAuth2ClientAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.security.oauth2.resource.servlet.OAuth2ResourceServerAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.BearerTokenAuthenticationToken' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.security.oauth2.resource.reactive.ReactiveOAuth2ResourceServerAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.solr.SolrAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.apache.solr.client.solrj.impl.CloudSolrClient' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.transaction.PlatformTransactionManager' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.transaction.jta.JtaAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'javax.transaction.Transaction' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.validation.ValidationAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'javax.validation.executable.ExecutableValidator' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.reactive.HttpHandlerAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.reactive.WebFluxAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.reactive.error.ErrorWebFluxAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.reactive.function.client.ClientHttpConnectorAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.reactive.function.client.WebClientAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.websocket.servlet.WebSocketMessagingAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.webservices.WebServicesAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' +15:34:38.294 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.webservices.client.WebServiceTemplateAutoConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' +15:34:38.294 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.295 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.web.reactive.ReactiveWebServerFactoryAutoConfiguration did not match due to @ConditionalOnWebApplication did not find reactive web application classes +15:34:38.295 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.websocket.reactive.WebSocketReactiveAutoConfiguration did not match due to @ConditionalOnWebApplication did not find reactive web application classes +15:34:38.295 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.297 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.mail.MailSenderValidatorAutoConfiguration did not match due to @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' +15:34:38.297 logback [main] TRACE o.s.b.a.AutoConfigurationImportSelector - Filtered 106 auto configuration class in 30 ms +15:34:38.297 logback [main] TRACE o.s.c.i.s.SpringFactoriesLoader - Loaded [org.springframework.boot.autoconfigure.AutoConfigurationImportListener] names: [org.springframework.boot.autoconfigure.condition.ConditionEvaluationReportAutoConfigurationImportListener] +15:34:38.297 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.301 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' +15:34:38.309 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.309 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.309 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.310 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.310 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.310 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.314 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.messages.basename' in PropertySource 'configurationProperties' +15:34:38.314 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.messages.basename' in PropertySource 'servletConfigInitParams' +15:34:38.315 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.messages.basename' in PropertySource 'servletContextInitParams' +15:34:38.315 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.messages.basename' in PropertySource 'systemProperties' +15:34:38.315 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.messages.basename' in PropertySource 'systemEnvironment' +15:34:38.315 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.messages.basename' in PropertySource 'random' +15:34:38.315 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.messages.basename' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.316 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.messages.basename' in any property source +15:34:38.316 logback [main] TRACE o.s.c.i.s.PathMatchingResourcePatternResolver - Resolved classpath location [messages.properties] to resources [] +15:34:38.316 logback [main] TRACE o.s.b.a.c.MessageSourceAutoConfiguration$ResourceBundleCondition - Condition MessageSourceAutoConfiguration.ResourceBundleCondition on org.springframework.boot.autoconfigure.context.MessageSourceAutoConfiguration did not match due to ResourceBundle did not find bundle with basename messages +15:34:38.316 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.316 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.316 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.316 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.316 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.316 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.316 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.317 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.317 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.317 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.317 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.317 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.317 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.318 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.318 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.318 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.319 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration matched due to @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'javax.websocket.server.ServerContainer' +15:34:38.319 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.321 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration matched due to found 'session' scope +15:34:38.321 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.321 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.321 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.321 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.322 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$UndertowWebSocketConfiguration did not match due to @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' +15:34:38.322 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.323 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$JettyWebSocketConfiguration did not match due to @ConditionalOnClass did not find required class 'org.eclipse.jetty.websocket.jsr356.server.deploy.WebSocketServerContainerInitializer' +15:34:38.323 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.324 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration matched due to @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' +15:34:38.324 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.324 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.324 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.324 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.325 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.325 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.325 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.326 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.326 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.326 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.328 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration matched due to @ConditionalOnClass found required class 'javax.servlet.ServletRequest' +15:34:38.329 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.329 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration matched due to found 'session' scope +15:34:38.329 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.329 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.329 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.329 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.332 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat matched due to @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' +15:34:38.332 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.332 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.332 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.332 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.333 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedJetty did not match due to @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.webapp.WebAppContext' +15:34:38.333 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.334 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedUndertow did not match due to @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' +15:34:38.334 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.334 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.334 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.334 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.334 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.334 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.334 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.335 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' +15:34:38.335 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.335 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration matched due to found 'session' scope +15:34:38.335 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.335 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.335 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.335 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.338 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration matched due to @ConditionalOnClass found required class 'javax.servlet.ServletRegistration' +15:34:38.338 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.340 logback [main] TRACE o.s.b.a.w.s.DispatcherServletAutoConfiguration$DispatcherServletRegistrationCondition - Condition DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration matched due to DispatcherServlet Registration did not find servlet registration bean +15:34:38.341 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.341 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.341 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.341 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.342 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration matched due to @ConditionalOnClass found required class 'javax.servlet.ServletRegistration' +15:34:38.342 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.342 logback [main] TRACE o.s.b.a.w.s.DispatcherServletAutoConfiguration$DefaultDispatcherServletCondition - Condition DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration matched due to Default DispatcherServlet did not find dispatcher servlet beans +15:34:38.342 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.342 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.342 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.342 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.343 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration matched due to @ConditionalOnClass found required class 'javax.servlet.ServletRegistration' +15:34:38.343 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.343 logback [main] TRACE o.s.b.a.w.s.DispatcherServletAutoConfiguration$DefaultDispatcherServletCondition - Condition DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration matched due to Default DispatcherServlet did not find dispatcher servlet beans +15:34:38.343 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.344 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.344 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.344 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.344 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.344 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.344 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.345 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' +15:34:38.345 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.345 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.345 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.345 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.345 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.345 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.346 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.346 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.346 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.346 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.347 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration matched due to @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' +15:34:38.347 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.347 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration matched due to found 'session' scope +15:34:38.347 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.347 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.347 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.347 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.350 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration matched due to @ConditionalOnProperty (server.error.whitelabel.enabled) matched +15:34:38.350 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.351 logback [main] TRACE o.s.c.i.s.SpringFactoriesLoader - Loaded [org.springframework.boot.autoconfigure.template.TemplateAvailabilityProvider] names: [org.springframework.boot.autoconfigure.freemarker.FreeMarkerTemplateAvailabilityProvider, org.springframework.boot.autoconfigure.mustache.MustacheTemplateAvailabilityProvider, org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAvailabilityProvider, org.springframework.boot.autoconfigure.thymeleaf.ThymeleafTemplateAvailabilityProvider, org.springframework.boot.autoconfigure.web.servlet.JspTemplateAvailabilityProvider] +15:34:38.353 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.template.provider.cache' in PropertySource 'configurationProperties' +15:34:38.353 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.template.provider.cache' in PropertySource 'servletConfigInitParams' +15:34:38.353 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.template.provider.cache' in PropertySource 'servletContextInitParams' +15:34:38.353 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.template.provider.cache' in PropertySource 'systemProperties' +15:34:38.354 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.template.provider.cache' in PropertySource 'systemEnvironment' +15:34:38.354 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.template.provider.cache' in PropertySource 'random' +15:34:38.354 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.template.provider.cache' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.354 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.template.provider.cache' in any property source +15:34:38.357 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.prefix' in PropertySource 'configurationProperties' +15:34:38.357 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.prefix' in PropertySource 'servletConfigInitParams' +15:34:38.357 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.prefix' in PropertySource 'servletContextInitParams' +15:34:38.357 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.prefix' in PropertySource 'systemProperties' +15:34:38.358 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.prefix' in PropertySource 'systemEnvironment' +15:34:38.358 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.prefix' in PropertySource 'random' +15:34:38.358 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.prefix' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.358 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.thymeleaf.prefix' in any property source +15:34:38.358 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.suffix' in PropertySource 'configurationProperties' +15:34:38.358 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.suffix' in PropertySource 'servletConfigInitParams' +15:34:38.358 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.suffix' in PropertySource 'servletContextInitParams' +15:34:38.358 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.suffix' in PropertySource 'systemProperties' +15:34:38.358 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.suffix' in PropertySource 'systemEnvironment' +15:34:38.358 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.suffix' in PropertySource 'random' +15:34:38.358 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.suffix' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.358 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.thymeleaf.suffix' in any property source +15:34:38.359 logback [main] TRACE o.s.b.a.w.s.e.ErrorMvcAutoConfiguration$ErrorTemplateMissingCondition - Condition ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition on org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration matched due to ErrorTemplate Missing did not find error template view +15:34:38.359 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.359 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.359 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.360 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.360 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.360 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.360 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.361 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.361 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.361 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.361 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.361 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.361 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.362 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration matched due to @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' +15:34:38.362 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.362 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration matched due to found 'session' scope +15:34:38.362 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.362 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.362 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.362 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.365 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.365 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.366 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.367 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.367 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.368 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.372 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.fixed.enabled' in PropertySource 'configurationProperties' +15:34:38.372 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.fixed.enabled' in PropertySource 'servletConfigInitParams' +15:34:38.372 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.fixed.enabled' in PropertySource 'servletContextInitParams' +15:34:38.372 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.fixed.enabled' in PropertySource 'systemProperties' +15:34:38.372 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.fixed.enabled' in PropertySource 'systemEnvironment' +15:34:38.372 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.fixed.enabled' in PropertySource 'random' +15:34:38.372 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.fixed.enabled' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.372 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.web.resources.chain.strategy.fixed.enabled' in any property source +15:34:38.372 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.content.enabled' in PropertySource 'configurationProperties' +15:34:38.372 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.content.enabled' in PropertySource 'servletConfigInitParams' +15:34:38.372 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.content.enabled' in PropertySource 'servletContextInitParams' +15:34:38.373 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.content.enabled' in PropertySource 'systemProperties' +15:34:38.373 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.content.enabled' in PropertySource 'systemEnvironment' +15:34:38.373 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.content.enabled' in PropertySource 'random' +15:34:38.373 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.content.enabled' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.373 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.web.resources.chain.strategy.content.enabled' in any property source +15:34:38.373 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.enabled' in PropertySource 'configurationProperties' +15:34:38.373 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.enabled' in PropertySource 'servletConfigInitParams' +15:34:38.373 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.enabled' in PropertySource 'servletContextInitParams' +15:34:38.373 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.enabled' in PropertySource 'systemProperties' +15:34:38.373 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.enabled' in PropertySource 'systemEnvironment' +15:34:38.373 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.enabled' in PropertySource 'random' +15:34:38.373 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.enabled' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.373 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.web.resources.chain.enabled' in any property source +15:34:38.373 logback [main] TRACE o.s.b.a.w.OnEnabledResourceChainCondition - Condition OnEnabledResourceChainCondition on org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration$ResourceChainCustomizerConfiguration did not match due to @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator +15:34:38.373 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.374 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.374 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.374 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.374 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.374 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.374 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.375 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' +15:34:38.375 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.375 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.enabled' in PropertySource 'configurationProperties' +15:34:38.375 logback [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'configurationProperties' with value of type String +15:34:38.375 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration matched due to @ConditionalOnProperty (spring.jmx.enabled=true) matched +15:34:38.375 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.375 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.376 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.376 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.376 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.376 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.376 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.376 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.376 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.376 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.377 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.admin.enabled' in PropertySource 'configurationProperties' +15:34:38.377 logback [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'spring.application.admin.enabled' in PropertySource 'configurationProperties' with value of type String +15:34:38.377 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration matched due to @ConditionalOnProperty (spring.application.admin.enabled=true) matched +15:34:38.377 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.377 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.377 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.377 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.377 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.377 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.377 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.378 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.378 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.378 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.378 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.aop.AopAutoConfiguration matched due to @ConditionalOnProperty (spring.aop.auto=true) matched +15:34:38.378 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.378 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.378 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.378 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.379 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration matched due to @ConditionalOnMissingClass did not find unwanted class 'org.aspectj.weaver.Advice' +15:34:38.379 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.380 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration matched due to @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched +15:34:38.380 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.380 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.380 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.380 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.380 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$AspectJAutoProxyingConfiguration did not match due to @ConditionalOnClass did not find required class 'org.aspectj.weaver.Advice' +15:34:38.380 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.381 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.381 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.381 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.381 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.381 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.381 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.381 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.381 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.381 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.381 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.381 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.381 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.381 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.381 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.381 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.382 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' +15:34:38.382 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.382 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.382 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.382 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.410 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.410 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.410 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.411 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.411 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.cache.JCacheCacheConfiguration did not match due to @ConditionalOnClass did not find required class 'javax.cache.Caching' +15:34:38.411 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.411 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.411 logback [main] TRACE o.s.b.a.AutoConfigurationImportSelector - Filtered 1 auto configuration class in 0 ms +15:34:38.411 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.411 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.cache.EhCacheCacheConfiguration did not match due to @ConditionalOnClass did not find required class 'net.sf.ehcache.Cache' +15:34:38.411 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.411 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.411 logback [main] TRACE o.s.b.a.AutoConfigurationImportSelector - Filtered 1 auto configuration class in 0 ms +15:34:38.411 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.412 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.cache.HazelcastCacheConfiguration did not match due to @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' +15:34:38.412 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.412 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.412 logback [main] TRACE o.s.b.a.AutoConfigurationImportSelector - Filtered 1 auto configuration class in 0 ms +15:34:38.412 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.412 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.cache.InfinispanCacheConfiguration did not match due to @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' +15:34:38.412 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.412 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.412 logback [main] TRACE o.s.b.a.AutoConfigurationImportSelector - Filtered 1 auto configuration class in 0 ms +15:34:38.412 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.412 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.cache.CouchbaseCacheConfiguration did not match due to @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' +15:34:38.412 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.412 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.412 logback [main] TRACE o.s.b.a.AutoConfigurationImportSelector - Filtered 1 auto configuration class in 0 ms +15:34:38.412 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.412 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.cache.RedisCacheConfiguration did not match due to @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' +15:34:38.412 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.413 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.413 logback [main] TRACE o.s.b.a.AutoConfigurationImportSelector - Filtered 1 auto configuration class in 0 ms +15:34:38.413 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.413 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.cache.CaffeineCacheConfiguration did not match due to @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' +15:34:38.413 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.413 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.413 logback [main] TRACE o.s.b.a.AutoConfigurationImportSelector - Filtered 1 auto configuration class in 0 ms +15:34:38.413 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.413 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.413 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.413 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.413 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.413 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.414 logback [main] TRACE o.s.b.a.cache.CacheCondition - Condition CacheCondition on org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration matched due to Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type +15:34:38.414 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.414 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.414 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.414 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.415 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.415 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.415 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.415 logback [main] TRACE o.s.b.a.cache.CacheCondition - Condition CacheCondition on org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration matched due to Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type +15:34:38.415 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.415 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.415 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.415 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.415 logback [main] TRACE o.s.b.a.cache.CacheCondition - Condition CacheCondition on org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration matched due to Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type +15:34:38.415 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.415 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.415 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.416 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.417 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration$CacheManagerEntityManagerFactoryDependsOnPostProcessor did not match due to @ConditionalOnClass did not find required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' +15:34:38.417 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.417 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.417 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.417 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.417 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.417 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.417 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.417 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.417 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.417 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.417 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.417 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.417 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.417 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.417 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.418 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.418 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.418 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.418 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.418 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.418 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.418 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.418 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.418 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.418 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.419 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration matched due to @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' +15:34:38.419 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.419 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.419 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.419 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.420 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' +15:34:38.420 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.420 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.420 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.420 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.421 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' +15:34:38.421 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.421 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.421 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.421 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.422 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration matched due to @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' +15:34:38.422 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.422 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.422 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.422 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.422 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' +15:34:38.422 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.422 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.422 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.422 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.423 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.423 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.423 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.423 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.423 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.423 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.424 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' +15:34:38.424 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.426 logback [main] TRACE o.s.b.a.h.HttpMessageConvertersAutoConfiguration$NotReactiveWebApplicationCondition - Condition HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition on org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration matched due to NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes +15:34:38.426 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.426 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.426 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.426 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.426 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' +15:34:38.426 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.427 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.427 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.427 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.427 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.427 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.427 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.428 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2XmlHttpMessageConverterConfiguration did not match due to @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' +15:34:38.428 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.428 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration matched due to @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' +15:34:38.429 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.429 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration matched due to @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched +15:34:38.429 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.429 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.429 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.429 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.429 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.http.GsonHttpMessageConvertersConfiguration did not match due to @ConditionalOnClass did not find required class 'com.google.gson.Gson' +15:34:38.429 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.http.JsonbHttpMessageConvertersConfiguration did not match due to @ConditionalOnClass did not find required class 'javax.json.bind.Jsonb' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.430 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.431 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' +15:34:38.431 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.431 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.431 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.431 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.431 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.431 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.431 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.431 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.431 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.431 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.432 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration matched due to @ConditionalOnClass found required classes 'org.thymeleaf.templatemode.TemplateMode', 'org.thymeleaf.spring5.SpringTemplateEngine' +15:34:38.432 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.432 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.432 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.432 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.435 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafJava8TimeDialect matched due to @ConditionalOnClass found required class 'org.thymeleaf.extras.java8time.dialect.Java8TimeDialect' +15:34:38.435 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.435 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.435 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.435 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.435 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafSecurityDialectConfiguration did not match due to @ConditionalOnClass did not find required class 'org.thymeleaf.extras.springsecurity5.dialect.SpringSecurityDialect' +15:34:38.435 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.435 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DataAttributeDialectConfiguration did not match due to @ConditionalOnClass did not find required class 'com.github.mxab.thymeleaf.extras.dataattribute.dialect.DataAttributeDialect' +15:34:38.435 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.436 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebLayoutConfiguration did not match due to @ConditionalOnClass did not find required class 'nz.net.ultraq.thymeleaf.LayoutDialect' +15:34:38.436 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.436 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebFluxConfiguration did not match due to did not find reactive web application classes +15:34:38.436 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.436 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafReactiveConfiguration did not match due to did not find reactive web application classes +15:34:38.436 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.436 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration matched due to found 'session' scope +15:34:38.436 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.437 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration matched due to @ConditionalOnProperty (spring.thymeleaf.enabled) matched +15:34:38.437 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.437 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.437 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.437 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.437 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.437 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.437 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.437 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.437 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.437 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.438 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.438 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.438 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.438 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.438 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.438 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.438 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.438 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.438 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.439 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' +15:34:38.439 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.440 logback [main] TRACE o.s.b.a.w.c.RestTemplateAutoConfiguration$NotReactiveWebApplicationCondition - Condition RestTemplateAutoConfiguration.NotReactiveWebApplicationCondition on org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration matched due to NoneNestedConditions 0 matched 1 did not; NestedCondition on RestTemplateAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes +15:34:38.440 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.440 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.440 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.440 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.440 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.440 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.440 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.440 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.440 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.440 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.441 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration matched due to @ConditionalOnWebApplication (required) found 'session' scope +15:34:38.441 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.441 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.441 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.441 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.442 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$NettyWebServerFactoryCustomizerConfiguration did not match due to @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' +15:34:38.442 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.442 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$UndertowWebServerFactoryCustomizerConfiguration did not match due to @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' +15:34:38.442 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.443 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$JettyWebServerFactoryCustomizerConfiguration did not match due to @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.webapp.WebAppContext' +15:34:38.443 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.443 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration matched due to @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' +15:34:38.443 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.443 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.443 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.443 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.443 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.443 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.443 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.443 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.443 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.443 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.444 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' +15:34:38.444 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.444 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration matched due to found 'session' scope +15:34:38.444 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.444 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration matched due to @ConditionalOnProperty (server.servlet.encoding.enabled) matched +15:34:38.444 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.444 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.444 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.444 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.445 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.445 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.445 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.445 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.445 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.445 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.445 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration matched due to @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'javax.servlet.MultipartConfigElement' +15:34:38.445 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.446 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration matched due to found 'session' scope +15:34:38.446 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.446 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration matched due to @ConditionalOnProperty (spring.servlet.multipart.enabled) matched +15:34:38.446 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.446 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.446 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.446 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.448 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.requestMappingHandlerMapping() +15:34:38.448 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.mvcUrlPathHelper() +15:34:38.449 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.mvcPathMatcher() +15:34:38.449 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.mvcContentNegotiationManager() +15:34:38.449 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.viewControllerHandlerMapping() +15:34:38.449 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.beanNameHandlerMapping() +15:34:38.449 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.routerFunctionMapping() +15:34:38.449 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.resourceHandlerMapping() +15:34:38.449 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.mvcResourceUrlProvider() +15:34:38.450 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.defaultServletHandlerMapping() +15:34:38.450 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.requestMappingHandlerAdapter() +15:34:38.450 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.handlerFunctionAdapter() +15:34:38.450 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.mvcConversionService() +15:34:38.450 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.mvcValidator() +15:34:38.450 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.mvcUriComponentsContributor() +15:34:38.450 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.httpRequestHandlerAdapter() +15:34:38.450 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.simpleControllerHandlerAdapter() +15:34:38.450 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.handlerExceptionResolver() +15:34:38.451 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.mvcViewResolver() +15:34:38.451 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.mvcHandlerMappingIntrospector() +15:34:38.451 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.localeResolver() +15:34:38.451 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.themeResolver() +15:34:38.451 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.flashMapManager() +15:34:38.451 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method com.dudu.config.MyWebMvcConfigurationSupport.viewNameTranslator() +15:34:38.453 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' +15:34:38.474 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched due to @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans +15:34:38.474 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.474 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration.propertySourcesPlaceholderConfigurer() +15:34:38.475 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration matched due to @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'javax.websocket.server.ServerContainer' +15:34:38.475 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.475 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration matched due to found 'session' scope +15:34:38.475 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.475 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration matched due to @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' +15:34:38.475 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.475 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' +15:34:38.476 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched due to @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans +15:34:38.476 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.476 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration.websocketServletWebServerCustomizer() +15:34:38.476 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' +15:34:38.477 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration matched due to @ConditionalOnClass found required class 'javax.servlet.ServletRequest' +15:34:38.477 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.477 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration matched due to found 'session' scope +15:34:38.477 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.477 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat matched due to @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' +15:34:38.477 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.479 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat matched due to @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans +15:34:38.479 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.479 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' +15:34:38.479 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory() +15:34:38.481 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' +15:34:38.481 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration.servletWebServerFactoryCustomizer() +15:34:38.481 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched due to @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' +15:34:38.481 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.481 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration.tomcatServletWebServerFactoryCustomizer() +15:34:38.481 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration#forwardedHeaderFilter did not match due to @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' +15:34:38.481 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.492 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' +15:34:38.492 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.492 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration matched due to found 'session' scope +15:34:38.492 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.492 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration matched due to @ConditionalOnClass found required class 'javax.servlet.ServletRegistration' +15:34:38.492 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.493 logback [main] TRACE o.s.b.a.w.s.DispatcherServletAutoConfiguration$DispatcherServletRegistrationCondition - Condition DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration matched due to DispatcherServlet Registration did not find servlet registration bean +15:34:38.493 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.493 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration matched due to @ConditionalOnClass found required class 'javax.servlet.ServletRegistration' +15:34:38.493 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.493 logback [main] TRACE o.s.b.a.w.s.DispatcherServletAutoConfiguration$DefaultDispatcherServletCondition - Condition DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration matched due to Default DispatcherServlet did not find dispatcher servlet beans +15:34:38.493 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.494 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' +15:34:38.494 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration.dispatcherServlet() +15:34:38.495 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration#multipartResolver did not match due to @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver +15:34:38.495 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.495 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' +15:34:38.496 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched due to @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' +15:34:38.497 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.497 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration.dispatcherServletRegistration() +15:34:38.497 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' +15:34:38.497 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' +15:34:38.497 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.498 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' +15:34:38.500 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration#taskExecutorBuilder matched due to @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans +15:34:38.500 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.500 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration.taskExecutorBuilder() +15:34:38.501 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration#applicationTaskExecutor matched due to @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans +15:34:38.501 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.501 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Alias definition 'taskExecutor' registered for name 'applicationTaskExecutor' +15:34:38.501 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration.applicationTaskExecutor() +15:34:38.501 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration matched due to @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' +15:34:38.501 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.501 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration matched due to found 'session' scope +15:34:38.501 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.502 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration matched due to @ConditionalOnProperty (server.error.whitelabel.enabled) matched +15:34:38.502 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.502 logback [main] TRACE o.s.c.i.s.SpringFactoriesLoader - Loaded [org.springframework.boot.autoconfigure.template.TemplateAvailabilityProvider] names: [org.springframework.boot.autoconfigure.freemarker.FreeMarkerTemplateAvailabilityProvider, org.springframework.boot.autoconfigure.mustache.MustacheTemplateAvailabilityProvider, org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAvailabilityProvider, org.springframework.boot.autoconfigure.thymeleaf.ThymeleafTemplateAvailabilityProvider, org.springframework.boot.autoconfigure.web.servlet.JspTemplateAvailabilityProvider] +15:34:38.502 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.template.provider.cache' in PropertySource 'configurationProperties' +15:34:38.502 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.template.provider.cache' in PropertySource 'servletConfigInitParams' +15:34:38.502 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.template.provider.cache' in PropertySource 'servletContextInitParams' +15:34:38.502 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.template.provider.cache' in PropertySource 'systemProperties' +15:34:38.502 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.template.provider.cache' in PropertySource 'systemEnvironment' +15:34:38.502 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.template.provider.cache' in PropertySource 'random' +15:34:38.502 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.template.provider.cache' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.502 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.template.provider.cache' in any property source +15:34:38.503 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.prefix' in PropertySource 'configurationProperties' +15:34:38.503 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.prefix' in PropertySource 'servletConfigInitParams' +15:34:38.503 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.prefix' in PropertySource 'servletContextInitParams' +15:34:38.503 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.prefix' in PropertySource 'systemProperties' +15:34:38.503 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.prefix' in PropertySource 'systemEnvironment' +15:34:38.503 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.prefix' in PropertySource 'random' +15:34:38.503 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.prefix' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.503 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.thymeleaf.prefix' in any property source +15:34:38.503 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.suffix' in PropertySource 'configurationProperties' +15:34:38.504 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.suffix' in PropertySource 'servletConfigInitParams' +15:34:38.504 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.suffix' in PropertySource 'servletContextInitParams' +15:34:38.504 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.suffix' in PropertySource 'systemProperties' +15:34:38.504 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.suffix' in PropertySource 'systemEnvironment' +15:34:38.504 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.suffix' in PropertySource 'random' +15:34:38.504 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.thymeleaf.suffix' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.504 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.thymeleaf.suffix' in any property source +15:34:38.504 logback [main] TRACE o.s.b.a.w.s.e.ErrorMvcAutoConfiguration$ErrorTemplateMissingCondition - Condition ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition on org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration matched due to ErrorTemplate Missing did not find error template view +15:34:38.504 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.505 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' +15:34:38.505 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration#defaultErrorView matched due to @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans +15:34:38.505 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.505 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.error() +15:34:38.506 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration#beanNameViewResolver matched due to @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans +15:34:38.507 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.507 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration.beanNameViewResolver() +15:34:38.507 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' +15:34:38.508 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched due to @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans +15:34:38.508 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.508 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched due to @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans +15:34:38.508 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.508 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration.conventionErrorViewResolver() +15:34:38.509 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' +15:34:38.510 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration#errorAttributes matched due to @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans +15:34:38.510 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.510 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.errorAttributes() +15:34:38.512 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration#basicErrorController matched due to @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans +15:34:38.512 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.512 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.basicErrorController() +15:34:38.512 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.errorPageCustomizer() +15:34:38.513 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration.preserveErrorControllerTargetClassPostProcessor() +15:34:38.513 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration matched due to @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' +15:34:38.513 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.513 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration matched due to found 'session' scope +15:34:38.513 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.514 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration did not match due to @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport' myWebMvcConfigurationSupport +15:34:38.514 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.514 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' +15:34:38.514 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.514 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.enabled' in PropertySource 'configurationProperties' +15:34:38.514 logback [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'spring.jmx.enabled' in PropertySource 'configurationProperties' with value of type String +15:34:38.514 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration matched due to @ConditionalOnProperty (spring.jmx.enabled=true) matched +15:34:38.514 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.514 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' +15:34:38.515 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration#mbeanExporter matched due to @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans +15:34:38.515 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.515 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration.mbeanExporter() +15:34:38.517 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration#objectNamingStrategy matched due to @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans +15:34:38.517 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.517 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration.objectNamingStrategy() +15:34:38.518 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration#mbeanServer matched due to @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans +15:34:38.518 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.518 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration.mbeanServer() +15:34:38.518 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.admin.enabled' in PropertySource 'configurationProperties' +15:34:38.518 logback [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'spring.application.admin.enabled' in PropertySource 'configurationProperties' with value of type String +15:34:38.518 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration matched due to @ConditionalOnProperty (spring.application.admin.enabled=true) matched +15:34:38.518 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.518 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' +15:34:38.519 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched due to @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans +15:34:38.520 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.520 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration.springApplicationAdminRegistrar() +15:34:38.520 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.aop.AopAutoConfiguration matched due to @ConditionalOnProperty (spring.aop.auto=true) matched +15:34:38.520 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.521 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration matched due to @ConditionalOnMissingClass did not find unwanted class 'org.aspectj.weaver.Advice' +15:34:38.521 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.521 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration matched due to @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched +15:34:38.521 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.521 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration' +15:34:38.521 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' +15:34:38.521 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' +15:34:38.521 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration.applicationAvailability() +15:34:38.521 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' +15:34:38.522 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.523 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match due to @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport +15:34:38.523 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.523 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' +15:34:38.524 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' +15:34:38.524 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration#defaultLifecycleProcessor matched due to @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans +15:34:38.524 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.524 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration.lifecycleProcessor() +15:34:38.524 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration matched due to @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' +15:34:38.524 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.525 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' +15:34:38.525 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.525 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' +15:34:38.525 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration.standardJacksonObjectMapperBuilderCustomizer() +15:34:38.525 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' +15:34:38.525 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.525 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' +15:34:38.528 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched due to @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans +15:34:38.528 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.528 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration.jacksonObjectMapperBuilder() +15:34:38.529 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration matched due to @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' +15:34:38.529 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.529 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' +15:34:38.531 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration#parameterNamesModule matched due to @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans +15:34:38.531 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.531 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration.parameterNamesModule() +15:34:38.531 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' +15:34:38.531 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.531 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' +15:34:38.532 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration#jacksonObjectMapper matched due to @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans +15:34:38.532 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.532 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration.jacksonObjectMapper() +15:34:38.532 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' +15:34:38.532 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration.jsonComponentModule() +15:34:38.533 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' +15:34:38.533 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.533 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' +15:34:38.533 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.533 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' +15:34:38.534 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched due to @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans +15:34:38.534 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.534 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration.stringHttpMessageConverter() +15:34:38.534 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration matched due to @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' +15:34:38.534 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.535 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration matched due to @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched +15:34:38.535 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.535 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration matched due to @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' +15:34:38.535 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.535 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' +15:34:38.536 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched due to @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans +15:34:38.536 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.536 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration.mappingJackson2HttpMessageConverter() +15:34:38.536 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' +15:34:38.537 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' +15:34:38.539 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration#messageConverters matched due to @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans +15:34:38.539 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.539 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration.messageConverters() +15:34:38.540 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' +15:34:38.540 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.git.location' in PropertySource 'configurationProperties' +15:34:38.540 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.git.location' in PropertySource 'servletConfigInitParams' +15:34:38.541 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.git.location' in PropertySource 'servletContextInitParams' +15:34:38.541 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.git.location' in PropertySource 'systemProperties' +15:34:38.541 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.git.location' in PropertySource 'systemEnvironment' +15:34:38.541 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.git.location' in PropertySource 'random' +15:34:38.541 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.git.location' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.541 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.info.git.location' in any property source +15:34:38.541 logback [main] TRACE o.s.b.a.i.ProjectInfoAutoConfiguration$GitResourceAvailableCondition - Condition ProjectInfoAutoConfiguration.GitResourceAvailableCondition on org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration#gitProperties did not match due to GitResource did not find git info at classpath:git.properties +15:34:38.541 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.build.location:classpath:META-INF/build-info.properties' in PropertySource 'configurationProperties' +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.build.location:classpath:META-INF/build-info.properties' in PropertySource 'servletConfigInitParams' +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.build.location:classpath:META-INF/build-info.properties' in PropertySource 'servletContextInitParams' +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.build.location:classpath:META-INF/build-info.properties' in PropertySource 'systemProperties' +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.build.location:classpath:META-INF/build-info.properties' in PropertySource 'systemEnvironment' +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.build.location:classpath:META-INF/build-info.properties' in PropertySource 'random' +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.build.location:classpath:META-INF/build-info.properties' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.info.build.location:classpath:META-INF/build-info.properties' in any property source +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.build.location' in PropertySource 'configurationProperties' +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.build.location' in PropertySource 'servletConfigInitParams' +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.build.location' in PropertySource 'servletContextInitParams' +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.build.location' in PropertySource 'systemProperties' +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.build.location' in PropertySource 'systemEnvironment' +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.build.location' in PropertySource 'random' +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.info.build.location' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.542 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.info.build.location' in any property source +15:34:38.542 logback [main] TRACE o.s.util.PropertyPlaceholderHelper - Resolved placeholder 'spring.info.build.location:classpath:META-INF/build-info.properties' +15:34:38.542 logback [main] TRACE o.s.b.a.c.OnResourceCondition - Condition OnResourceCondition on org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration#buildProperties did not match due to @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' +15:34:38.542 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.543 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' +15:34:38.543 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.543 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' +15:34:38.543 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration#taskScheduler did not match due to @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor +15:34:38.543 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.544 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration#taskSchedulerBuilder matched due to @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans +15:34:38.544 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.545 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration.taskSchedulerBuilder() +15:34:38.545 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration matched due to @ConditionalOnClass found required classes 'org.thymeleaf.templatemode.TemplateMode', 'org.thymeleaf.spring5.SpringTemplateEngine' +15:34:38.545 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.545 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafJava8TimeDialect matched due to @ConditionalOnClass found required class 'org.thymeleaf.extras.java8time.dialect.Java8TimeDialect' +15:34:38.545 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.545 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafJava8TimeDialect' +15:34:38.546 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafJava8TimeDialect#java8TimeDialect matched due to @ConditionalOnMissingBean (types: org.thymeleaf.extras.java8time.dialect.Java8TimeDialect; SearchStrategy: all) did not find any beans +15:34:38.546 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.546 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafJava8TimeDialect.java8TimeDialect() +15:34:38.546 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration matched due to found 'session' scope +15:34:38.546 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.546 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration matched due to @ConditionalOnProperty (spring.thymeleaf.enabled) matched +15:34:38.546 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.546 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration$ThymeleafViewResolverConfiguration' +15:34:38.547 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration$ThymeleafViewResolverConfiguration#thymeleafViewResolver matched due to @ConditionalOnMissingBean (names: thymeleafViewResolver; SearchStrategy: all) did not find any beans +15:34:38.547 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.547 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration$ThymeleafViewResolverConfiguration.thymeleafViewResolver() +15:34:38.547 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration' +15:34:38.547 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.fixed.enabled' in PropertySource 'configurationProperties' +15:34:38.547 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.fixed.enabled' in PropertySource 'servletConfigInitParams' +15:34:38.547 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.fixed.enabled' in PropertySource 'servletContextInitParams' +15:34:38.547 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.fixed.enabled' in PropertySource 'systemProperties' +15:34:38.547 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.fixed.enabled' in PropertySource 'systemEnvironment' +15:34:38.547 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.fixed.enabled' in PropertySource 'random' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.fixed.enabled' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.web.resources.chain.strategy.fixed.enabled' in any property source +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.content.enabled' in PropertySource 'configurationProperties' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.content.enabled' in PropertySource 'servletConfigInitParams' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.content.enabled' in PropertySource 'servletContextInitParams' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.content.enabled' in PropertySource 'systemProperties' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.content.enabled' in PropertySource 'systemEnvironment' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.content.enabled' in PropertySource 'random' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.strategy.content.enabled' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.web.resources.chain.strategy.content.enabled' in any property source +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.enabled' in PropertySource 'configurationProperties' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.enabled' in PropertySource 'servletConfigInitParams' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.enabled' in PropertySource 'servletContextInitParams' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.enabled' in PropertySource 'systemProperties' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.enabled' in PropertySource 'systemEnvironment' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.enabled' in PropertySource 'random' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.web.resources.chain.enabled' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.548 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.web.resources.chain.enabled' in any property source +15:34:38.548 logback [main] TRACE o.s.b.a.w.OnEnabledResourceChainCondition - Condition OnEnabledResourceChainCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration#resourceUrlEncodingFilter did not match due to @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator +15:34:38.548 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.548 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration' +15:34:38.550 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration#templateEngine matched due to @ConditionalOnMissingBean (types: org.thymeleaf.spring5.ISpringTemplateEngine; SearchStrategy: all) did not find any beans +15:34:38.551 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.551 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration.templateEngine() +15:34:38.551 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration matched due to @ConditionalOnMissingBean (names: defaultTemplateResolver; SearchStrategy: all) did not find any beans +15:34:38.551 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.551 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration' +15:34:38.551 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration.defaultTemplateResolver() +15:34:38.551 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration' +15:34:38.552 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' +15:34:38.552 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.552 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' +15:34:38.554 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration#restTemplateBuilderConfigurer matched due to @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestTemplateBuilderConfigurer; SearchStrategy: all) did not find any beans +15:34:38.555 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.555 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration.restTemplateBuilderConfigurer() +15:34:38.556 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration#restTemplateBuilder matched due to @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans +15:34:38.556 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.556 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration.restTemplateBuilder() +15:34:38.556 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration matched due to @ConditionalOnWebApplication (required) found 'session' scope +15:34:38.556 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.556 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration matched due to @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' +15:34:38.556 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.556 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' +15:34:38.556 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration.tomcatWebServerFactoryCustomizer() +15:34:38.556 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' +15:34:38.557 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration matched due to @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' +15:34:38.557 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.557 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration matched due to found 'session' scope +15:34:38.557 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.557 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration matched due to @ConditionalOnProperty (server.servlet.encoding.enabled) matched +15:34:38.557 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.557 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' +15:34:38.559 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration#characterEncodingFilter matched due to @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans +15:34:38.559 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.559 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration.characterEncodingFilter() +15:34:38.559 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration.localeCharsetMappingsCustomizer() +15:34:38.559 logback [main] TRACE o.s.b.a.condition.OnClassCondition - Condition OnClassCondition on org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration matched due to @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'javax.servlet.MultipartConfigElement' +15:34:38.559 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.559 logback [main] TRACE o.s.b.a.c.OnWebApplicationCondition - Condition OnWebApplicationCondition on org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration matched due to found 'session' scope +15:34:38.559 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.559 logback [main] TRACE o.s.b.a.c.OnPropertyCondition - Condition OnPropertyCondition on org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration matched due to @ConditionalOnProperty (spring.servlet.multipart.enabled) matched +15:34:38.559 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.560 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registered bean definition for imported class 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' +15:34:38.561 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration#multipartConfigElement matched due to @ConditionalOnMissingBean (types: javax.servlet.MultipartConfigElement,org.springframework.web.multipart.commons.CommonsMultipartResolver; SearchStrategy: all) did not find any beans +15:34:38.561 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.562 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration.multipartConfigElement() +15:34:38.562 logback [main] TRACE o.s.b.a.condition.OnBeanCondition - Condition OnBeanCondition on org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration#multipartResolver matched due to @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans +15:34:38.562 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'autoConfigurationReport' +15:34:38.562 logback [main] TRACE o.s.c.a.ConfigurationClassBeanDefinitionReader - Registering bean definition for @Bean method org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration.multipartResolver() +15:34:38.603 logback [main] TRACE o.s.c.a.ConfigurationClassEnhancer - Successfully enhanced com.dudu.Application; enhanced class name is: com.dudu.Application$$EnhancerBySpringCGLIB$$24bf34a6 +15:34:38.603 logback [main] TRACE o.s.c.a.ConfigurationClassPostProcessor - Replacing bean definition 'application' existing class 'com.dudu.Application' with enhanced class 'com.dudu.Application$$EnhancerBySpringCGLIB$$24bf34a6' +15:34:38.610 logback [main] TRACE o.s.c.a.ConfigurationClassEnhancer - Successfully enhanced com.dudu.config.MyWebMvcConfigurationSupport; enhanced class name is: com.dudu.config.MyWebMvcConfigurationSupport$$EnhancerBySpringCGLIB$$4c64eb6d +15:34:38.610 logback [main] TRACE o.s.c.a.ConfigurationClassPostProcessor - Replacing bean definition 'myWebMvcConfigurationSupport' existing class 'com.dudu.config.MyWebMvcConfigurationSupport' with enhanced class 'com.dudu.config.MyWebMvcConfigurationSupport$$EnhancerBySpringCGLIB$$4c64eb6d' +15:34:38.610 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'propertySourcesPlaceholderConfigurer' +15:34:38.610 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'propertySourcesPlaceholderConfigurer' +15:34:38.612 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'propertySourcesPlaceholderConfigurer' to allow for resolving potential circular references +15:34:38.612 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'propertySourcesPlaceholderConfigurer' +15:34:38.614 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' +15:34:38.614 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.context.event.internalEventListenerProcessor' +15:34:38.614 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.context.event.internalEventListenerProcessor' to allow for resolving potential circular references +15:34:38.614 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.context.event.internalEventListenerProcessor' +15:34:38.615 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' +15:34:38.615 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'preserveErrorControllerTargetClassPostProcessor' +15:34:38.615 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'preserveErrorControllerTargetClassPostProcessor' to allow for resolving potential circular references +15:34:38.615 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'preserveErrorControllerTargetClassPostProcessor' +15:34:38.615 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' +15:34:38.615 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.context.event.internalEventListenerFactory' +15:34:38.615 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.context.event.internalEventListenerFactory' to allow for resolving potential circular references +15:34:38.615 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.context.event.internalEventListenerFactory' +15:34:38.617 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' +15:34:38.617 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' +15:34:38.617 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' to allow for resolving potential circular references +15:34:38.617 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' +15:34:38.617 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' +15:34:38.617 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' +15:34:38.618 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' to allow for resolving potential circular references +15:34:38.619 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' +15:34:38.619 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' +15:34:38.619 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' +15:34:38.619 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' to allow for resolving potential circular references +15:34:38.619 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Invoking afterPropertiesSet() on bean with name 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' +15:34:38.619 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' +15:34:38.619 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' +15:34:38.619 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinderFactory' +15:34:38.619 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.context.internalConfigurationPropertiesBinderFactory' +15:34:38.619 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.context.internalConfigurationPropertiesBinderFactory' to allow for resolving potential circular references +15:34:38.619 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.context.internalConfigurationPropertiesBinderFactory' +15:34:38.620 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'propertySourcesPlaceholderConfigurer' +15:34:38.620 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' to allow for resolving potential circular references +15:34:38.620 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' +15:34:38.620 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' +15:34:38.620 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' +15:34:38.621 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'webServerFactoryCustomizerBeanPostProcessor' +15:34:38.622 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'webServerFactoryCustomizerBeanPostProcessor' to allow for resolving potential circular references +15:34:38.622 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'webServerFactoryCustomizerBeanPostProcessor' +15:34:38.622 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'errorPageRegistrarBeanPostProcessor' +15:34:38.622 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'errorPageRegistrarBeanPostProcessor' +15:34:38.623 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'errorPageRegistrarBeanPostProcessor' to allow for resolving potential circular references +15:34:38.623 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'errorPageRegistrarBeanPostProcessor' +15:34:38.624 logback [main] TRACE o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - No 'messageSource' bean, using [Empty MessageSource] +15:34:38.624 logback [main] TRACE o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - No 'applicationEventMulticaster' bean, using [SimpleApplicationEventMulticaster] +15:34:38.624 logback [main] DEBUG o.s.u.c.s.UiApplicationContextUtils - Unable to locate ThemeSource with name 'themeSource': using default [org.springframework.ui.context.support.ResourceBundleThemeSource@1eb6749b] +15:34:38.624 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tomcatServletWebServerFactory' +15:34:38.624 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'tomcatServletWebServerFactory' +15:34:38.625 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' +15:34:38.625 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' +15:34:38.625 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' to allow for resolving potential circular references +15:34:38.625 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' +15:34:38.636 logback [main] DEBUG o.a.c.core.AprLifecycleListener - The Apache Tomcat Native library could not be found using names [tcnative-1, libtcnative-1] on the java.library.path [/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib]. The errors reported were [Can't load library: /media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/bin/libtcnative-1.so, Can't load library: /media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/bin/liblibtcnative-1.so, no tcnative-1 in java.library.path, no libtcnative-1 in java.library.path] +org.apache.tomcat.jni.LibraryNotFoundError: Can't load library: /media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/bin/libtcnative-1.so, Can't load library: /media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/bin/liblibtcnative-1.so, no tcnative-1 in java.library.path, no libtcnative-1 in java.library.path + at org.apache.tomcat.jni.Library.(Library.java:102) + at org.apache.tomcat.jni.Library.initialize(Library.java:206) + at org.apache.catalina.core.AprLifecycleListener.init(AprLifecycleListener.java:193) + at org.apache.catalina.core.AprLifecycleListener.isAprAvailable(AprLifecycleListener.java:102) + at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getDefaultLifecycleListeners(TomcatServletWebServerFactory.java:174) + at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.(TomcatServletWebServerFactory.java:121) + at org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat.tomcatServletWebServerFactory(ServletWebServerFactoryConfiguration.java:76) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154) + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:651) + at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1336) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1179) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:571) + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:531) + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:213) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.getWebServerFactory(ServletWebServerApplicationContext.java:216) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:179) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:159) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:582) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:144) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:767) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:759) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:426) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:326) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1309) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1298) + at com.dudu.Application.main(Application.java:10) +15:34:38.647 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: accepted socket from [127.0.0.1:35250] +15:34:38.647 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) suggesting 127.0.0.1:35250 +15:34:38.647 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) client using 127.0.0.1:45907 +15:34:38.648 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) op = 80 +15:34:38.648 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting input stream +15:34:38.648 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'tomcatServletWebServerFactory' to allow for resolving potential circular references +15:34:38.648 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'websocketServletWebServerCustomizer' +15:34:38.649 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'websocketServletWebServerCustomizer' +15:34:38.649 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' +15:34:38.649 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' +15:34:38.649 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' to allow for resolving potential circular references +15:34:38.649 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' +15:34:38.649 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'websocketServletWebServerCustomizer' to allow for resolving potential circular references +15:34:38.650 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'websocketServletWebServerCustomizer' +15:34:38.650 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'servletWebServerFactoryCustomizer' +15:34:38.650 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'servletWebServerFactoryCustomizer' +15:34:38.650 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' +15:34:38.650 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' +15:34:38.650 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: call dispatcher +15:34:38.651 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1: sun.rmi.transport.DGCImpl[0:0:0, 2]: java.rmi.dgc.Lease dirty(java.rmi.server.ObjID[], long, java.rmi.dgc.Lease)] +15:34:38.651 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' to allow for resolving potential circular references +15:34:38.652 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:38.652 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "[Ljava.rmi.server.ObjID;" found via defaultLoader, defined by null +15:34:38.652 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' +15:34:38.653 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +15:34:38.653 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +15:34:38.654 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [Ljava.rmi.server.ObjID;, array length: -1, nRefs: 2, depth: 1, bytes: 80, ex: n/a +15:34:38.654 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [Ljava.rmi.server.ObjID;, array length: 1, nRefs: 3, depth: 1, bytes: 86, ex: n/a +15:34:38.654 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:38.654 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "java.rmi.server.ObjID" found via defaultLoader, defined by null +15:34:38.655 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.server.ObjID, array length: -1, nRefs: 5, depth: 2, bytes: 164, ex: n/a +15:34:38.655 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:38.655 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "java.rmi.server.UID" found via defaultLoader, defined by null +15:34:38.655 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.server.UID, array length: -1, nRefs: 8, depth: 3, bytes: 233, ex: n/a +15:34:38.656 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:38.656 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "java.rmi.dgc.Lease" found via defaultLoader, defined by null +15:34:38.656 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.dgc.Lease, array length: -1, nRefs: 11, depth: 1, bytes: 330, ex: n/a +15:34:38.656 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 13, depth: 2, bytes: 395, ex: n/a +15:34:38.656 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:38.656 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "java.rmi.dgc.VMID" found via defaultLoader, defined by null +15:34:38.657 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.dgc.VMID, array length: -1, nRefs: 14, depth: 2, bytes: 396, ex: n/a +15:34:38.657 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:38.657 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "[B" found via defaultLoader, defined by null +15:34:38.657 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [B, array length: -1, nRefs: 17, depth: 3, bytes: 416, ex: n/a +15:34:38.657 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [B, array length: 8, nRefs: 18, depth: 3, bytes: 422, ex: n/a +15:34:38.657 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 19, depth: 3, bytes: 436, ex: n/a +15:34:38.657 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(1)-127.0.0.1: vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe +15:34:38.658 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' to allow for resolving potential circular references +15:34:38.658 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(1)-127.0.0.1: id = [752891fb:176466c655b:-7fff, 1557992869461085535], vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe, duration = 600000 +15:34:38.659 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(1)-127.0.0.1: add to dirty set: ccee31b1defcc993:1474188a:175f2f486b7:-7ffe +15:34:38.659 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting output stream +15:34:38.660 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) op = 80 +15:34:38.660 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting input stream +15:34:38.660 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: call dispatcher +15:34:38.660 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIJRMPServerImpl$ExportedWrapper[752891fb:176466c655b:-7fff, 1557992869461085535]: public abstract javax.management.remote.rmi.RMIConnection javax.management.remote.rmi.RMIServer.newClient(java.lang.Object) throws java.io.IOException] +15:34:38.660 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - making new client +15:34:38.660 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - no subject +15:34:38.661 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://127.0.0.1 1 +15:34:38.661 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - making new connection: rmi://127.0.0.1 1 +15:34:38.661 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' +15:34:38.662 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.misc - Creates a new ServerCommunicatorAdmin object with the timeout 120000 +15:34:38.663 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' +15:34:38.664 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' to allow for resolving potential circular references +15:34:38.664 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' +15:34:38.666 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - No bean named 'conversionService' found in org.springframework.beans.factory.support.DefaultListableBeanFactory@514646ef: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.event.internalEventListenerProcessor,org.springframework.context.event.internalEventListenerFactory,application,org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory,myWebMvcConfigurationSupport,learnController,myInterceptor,requestMappingHandlerMapping,mvcUrlPathHelper,mvcPathMatcher,mvcContentNegotiationManager,viewControllerHandlerMapping,beanNameHandlerMapping,routerFunctionMapping,resourceHandlerMapping,mvcResourceUrlProvider,defaultServletHandlerMapping,requestMappingHandlerAdapter,handlerFunctionAdapter,mvcConversionService,mvcValidator,mvcUriComponentsContributor,httpRequestHandlerAdapter,simpleControllerHandlerAdapter,handlerExceptionResolver,mvcViewResolver,mvcHandlerMappingIntrospector,localeResolver,themeResolver,flashMapManager,viewNameTranslator,org.springframework.boot.autoconfigure.AutoConfigurationPackages,org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration,propertySourcesPlaceholderConfigurer,org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration,websocketServletWebServerCustomizer,org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration,org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat,tomcatServletWebServerFactory,org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration,servletWebServerFactoryCustomizer,tomcatServletWebServerFactoryCustomizer,org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor,org.springframework.boot.context.internalConfigurationPropertiesBinderFactory,org.springframework.boot.context.internalConfigurationPropertiesBinder,org.springframework.boot.context.properties.BoundConfigurationProperties,org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter,server-org.springframework.boot.autoconfigure.web.ServerProperties,webServerFactoryCustomizerBeanPostProcessor,errorPageRegistrarBeanPostProcessor,org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration,dispatcherServlet,spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties,org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration,dispatcherServletRegistration,org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration,org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration,taskExecutorBuilder,applicationTaskExecutor,spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties,org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration,error,beanNameViewResolver,org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration,conventionErrorViewResolver,spring.web-org.springframework.boot.autoconfigure.web.WebProperties,spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties,org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration,errorAttributes,basicErrorController,errorPageCustomizer,preserveErrorControllerTargetClassPostProcessor,org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration,mbeanExporter,objectNamingStrategy,mbeanServer,org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration,springApplicationAdminRegistrar,org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration,org.springframework.boot.autoconfigure.aop.AopAutoConfiguration,org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration,applicationAvailability,org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration,org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration,lifecycleProcessor,spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration,standardJacksonObjectMapperBuilderCustomizer,spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration,jacksonObjectMapperBuilder,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration,parameterNamesModule,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration,jacksonObjectMapper,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration,jsonComponentModule,org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration,stringHttpMessageConverter,org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration,mappingJackson2HttpMessageConverter,org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration,org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration,messageConverters,org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration,spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties,org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration,taskSchedulerBuilder,spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafJava8TimeDialect,java8TimeDialect,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration$ThymeleafViewResolverConfiguration,thymeleafViewResolver,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration,templateEngine,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration,defaultTemplateResolver,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration,spring.thymeleaf-org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties,org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration,restTemplateBuilderConfigurer,restTemplateBuilder,org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration,tomcatWebServerFactoryCustomizer,org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration,org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration,characterEncodingFilter,localeCharsetMappingsCustomizer,org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration,multipartConfigElement,multipartResolver,spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties]; root of factory hierarchy +15:34:38.666 logback [JMX server connection timeout 19] DEBUG javax.management.remote.timeout - Admin: timeout=120000 +15:34:38.666 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(1)-127.0.0.1: strongRef = javax.management.remote.rmi.RMIConnectionImpl@7f92d588: connectionId=rmi://127.0.0.1 1 +15:34:38.666 logback [JMX server connection timeout 19] DEBUG javax.management.remote.timeout - Admin: Timestamp=1607499278666 +15:34:38.666 logback [JMX server connection timeout 19] DEBUG javax.management.remote.timeout - Admin: remaining timeout=120000 +15:34:38.666 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(1)-127.0.0.1: add object [752891fb:176466c655b:-7ffd, 5973335293310000914] +15:34:38.667 logback [JMX server connection timeout 19] DEBUG javax.management.remote.misc - Waiting with timeout: 120000 ms remaining +15:34:38.667 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "getAttribute(Ljavax/management/ObjectName;Ljava/lang/String;Ljavax/security/auth/Subject;)Ljava/lang/Object;" +15:34:38.667 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "addNotificationListener(Ljavax/management/ObjectName;Ljavax/management/ObjectName;Ljava/rmi/MarshalledObject;Ljava/rmi/MarshalledObject;Ljavax/security/auth/Subject;)V" +15:34:38.667 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "createMBean(Ljava/lang/String;Ljavax/management/ObjectName;Ljava/rmi/MarshalledObject;[Ljava/lang/String;Ljavax/security/auth/Subject;)Ljavax/management/ObjectInstance;" +15:34:38.667 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "createMBean(Ljava/lang/String;Ljavax/management/ObjectName;Ljavax/management/ObjectName;Ljava/rmi/MarshalledObject;[Ljava/lang/String;Ljavax/security/auth/Subject;)Ljavax/management/ObjectInstance;" +15:34:38.667 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "createMBean(Ljava/lang/String;Ljavax/management/ObjectName;Ljavax/management/ObjectName;Ljavax/security/auth/Subject;)Ljavax/management/ObjectInstance;" +15:34:38.667 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "createMBean(Ljava/lang/String;Ljavax/management/ObjectName;Ljavax/security/auth/Subject;)Ljavax/management/ObjectInstance;" +15:34:38.668 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "getDefaultDomain(Ljavax/security/auth/Subject;)Ljava/lang/String;" +15:34:38.668 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "getDomains(Ljavax/security/auth/Subject;)[Ljava/lang/String;" +15:34:38.668 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "getMBeanCount(Ljavax/security/auth/Subject;)Ljava/lang/Integer;" +15:34:38.668 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "getMBeanInfo(Ljavax/management/ObjectName;Ljavax/security/auth/Subject;)Ljavax/management/MBeanInfo;" +15:34:38.669 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "getObjectInstance(Ljavax/management/ObjectName;Ljavax/security/auth/Subject;)Ljavax/management/ObjectInstance;" +15:34:38.669 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "queryMBeans(Ljavax/management/ObjectName;Ljava/rmi/MarshalledObject;Ljavax/security/auth/Subject;)Ljava/util/Set;" +15:34:38.669 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "queryNames(Ljavax/management/ObjectName;Ljava/rmi/MarshalledObject;Ljavax/security/auth/Subject;)Ljava/util/Set;" +15:34:38.669 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "removeNotificationListener(Ljavax/management/ObjectName;Ljavax/management/ObjectName;Ljava/rmi/MarshalledObject;Ljava/rmi/MarshalledObject;Ljavax/security/auth/Subject;)V" +15:34:38.670 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "removeNotificationListener(Ljavax/management/ObjectName;Ljavax/management/ObjectName;Ljavax/security/auth/Subject;)V" +15:34:38.670 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "setAttribute(Ljavax/management/ObjectName;Ljava/rmi/MarshalledObject;Ljavax/security/auth/Subject;)V" +15:34:38.670 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "setAttributes(Ljavax/management/ObjectName;Ljava/rmi/MarshalledObject;Ljavax/security/auth/Subject;)Ljavax/management/AttributeList;" +15:34:38.670 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "unregisterMBean(Ljavax/management/ObjectName;Ljavax/security/auth/Subject;)V" +15:34:38.670 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "addNotificationListeners([Ljavax/management/ObjectName;[Ljava/rmi/MarshalledObject;[Ljavax/security/auth/Subject;)[Ljava/lang/Integer;" +15:34:38.671 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "fetchNotifications(JIJ)Ljavax/management/remote/NotificationResult;" +15:34:38.671 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "removeNotificationListeners(Ljavax/management/ObjectName;[Ljava/lang/Integer;Ljavax/security/auth/Subject;)V" +15:34:38.671 logback [main] TRACE o.s.beans.TypeConverterDelegate - Converting String to [class java.lang.Integer] using property editor [org.springframework.beans.propertyeditors.CustomNumberEditor@7a48e6e2] +15:34:38.671 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "isInstanceOf(Ljavax/management/ObjectName;Ljava/lang/String;Ljavax/security/auth/Subject;)Z" +15:34:38.674 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "getConnectionId()Ljava/lang/String;" +15:34:38.674 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +15:34:38.674 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "invoke(Ljavax/management/ObjectName;Ljava/lang/String;Ljava/rmi/MarshalledObject;[Ljava/lang/String;Ljavax/security/auth/Subject;)Ljava/lang/Object;" +15:34:38.674 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'servletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +15:34:38.674 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "isRegistered(Ljavax/management/ObjectName;Ljavax/security/auth/Subject;)Z" +15:34:38.674 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "close()V" +15:34:38.674 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.ref - RMI TCP Connection(1)-127.0.0.1: string used for method hash: "getAttributes(Ljavax/management/ObjectName;[Ljava/lang/String;Ljavax/security/auth/Subject;)Ljavax/management/AttributeList;" +15:34:38.675 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'servletWebServerFactoryCustomizer' to allow for resolving potential circular references +15:34:38.675 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - new connection done: rmi://127.0.0.1 1 +15:34:38.675 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'servletWebServerFactoryCustomizer' +15:34:38.675 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting output stream +15:34:38.675 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' +15:34:38.675 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'tomcatServletWebServerFactoryCustomizer' +15:34:38.675 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' +15:34:38.676 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +15:34:38.676 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'tomcatServletWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +15:34:38.676 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'tomcatServletWebServerFactoryCustomizer' to allow for resolving potential circular references +15:34:38.676 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) op = 80 +15:34:38.676 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'tomcatServletWebServerFactoryCustomizer' +15:34:38.676 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting input stream +15:34:38.676 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'tomcatWebServerFactoryCustomizer' +15:34:38.676 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: call dispatcher +15:34:38.676 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'tomcatWebServerFactoryCustomizer' +15:34:38.676 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1: sun.rmi.transport.DGCImpl[0:0:0, 2]: java.rmi.dgc.Lease dirty(java.rmi.server.ObjID[], long, java.rmi.dgc.Lease)] +15:34:38.676 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' +15:34:38.676 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' +15:34:38.676 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:38.677 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "[Ljava.rmi.server.ObjID;" found via defaultLoader, defined by null +15:34:38.677 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' to allow for resolving potential circular references +15:34:38.677 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [Ljava.rmi.server.ObjID;, array length: -1, nRefs: 2, depth: 1, bytes: 80, ex: n/a +15:34:38.677 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [Ljava.rmi.server.ObjID;, array length: 1, nRefs: 3, depth: 1, bytes: 86, ex: n/a +15:34:38.677 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' +15:34:38.677 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:38.677 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "java.rmi.server.ObjID" found via defaultLoader, defined by null +15:34:38.677 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.server.ObjID, array length: -1, nRefs: 5, depth: 2, bytes: 164, ex: n/a +15:34:38.677 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'environment' +15:34:38.677 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:38.677 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "java.rmi.server.UID" found via defaultLoader, defined by null +15:34:38.677 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.server.UID, array length: -1, nRefs: 8, depth: 3, bytes: 233, ex: n/a +15:34:38.677 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +15:34:38.677 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:38.678 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'environment' +15:34:38.678 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "java.rmi.dgc.Lease" found via defaultLoader, defined by null +15:34:38.678 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'tomcatWebServerFactoryCustomizer' via factory method to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +15:34:38.678 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.dgc.Lease, array length: -1, nRefs: 11, depth: 1, bytes: 330, ex: n/a +15:34:38.678 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 13, depth: 2, bytes: 395, ex: n/a +15:34:38.678 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:38.678 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "java.rmi.dgc.VMID" found via defaultLoader, defined by null +15:34:38.678 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.dgc.VMID, array length: -1, nRefs: 14, depth: 2, bytes: 396, ex: n/a +15:34:38.678 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:38.678 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "[B" found via defaultLoader, defined by null +15:34:38.678 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [B, array length: -1, nRefs: 17, depth: 3, bytes: 416, ex: n/a +15:34:38.678 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [B, array length: 8, nRefs: 18, depth: 3, bytes: 422, ex: n/a +15:34:38.678 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 19, depth: 3, bytes: 436, ex: n/a +15:34:38.679 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(1)-127.0.0.1: vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe +15:34:38.679 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'tomcatWebServerFactoryCustomizer' to allow for resolving potential circular references +15:34:38.679 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(1)-127.0.0.1: id = [752891fb:176466c655b:-7ffd, 5973335293310000914], vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe, duration = 600000 +15:34:38.679 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(1)-127.0.0.1: add to dirty set: ccee31b1defcc993:1474188a:175f2f486b7:-7ffe +15:34:38.679 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting output stream +15:34:38.679 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'tomcatWebServerFactoryCustomizer' +15:34:38.679 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) op = 84 +15:34:38.680 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'localeCharsetMappingsCustomizer' +15:34:38.680 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'localeCharsetMappingsCustomizer' +15:34:38.680 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' +15:34:38.680 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' +15:34:38.680 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) op = 80 +15:34:38.680 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting input stream +15:34:38.681 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: call dispatcher +15:34:38.681 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7ffd, 5973335293310000914]: public abstract java.lang.String javax.management.remote.rmi.RMIConnection.getConnectionId() throws java.io.IOException] +15:34:38.681 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting output stream +15:34:38.682 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +15:34:38.682 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +15:34:38.683 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' to allow for resolving potential circular references +15:34:38.683 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' +15:34:38.683 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'localeCharsetMappingsCustomizer' to allow for resolving potential circular references +15:34:38.684 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'localeCharsetMappingsCustomizer' +15:34:38.684 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) op = 80 +15:34:38.684 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting input stream +15:34:38.684 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: call dispatcher +15:34:38.684 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7ffd, 5973335293310000914]: public abstract java.lang.Object javax.management.remote.rmi.RMIConnection.getAttribute(javax.management.ObjectName,java.lang.String,javax.security.auth.Subject) throws javax.management.MBeanException,javax.management.AttributeNotFoundException,javax.management.InstanceNotFoundException,javax.management.ReflectionException,java.io.IOException] +15:34:38.684 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" +15:34:38.684 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:38.684 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "javax.management.ObjectName" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:38.685 logback [RMI TCP Connection(1)-127.0.0.1] TRACE javax.management.remote.rmi - connectionId=rmi://127.0.0.1 1, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready +15:34:38.685 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.misc - Receive a new request. +15:34:38.685 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.mbeanserver - Attribute = Ready, ObjectName = org.springframework.boot:type=Admin,name=SpringApplication +15:34:38.685 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.mbeanserver - name = org.springframework.boot:type=Admin,name=SpringApplication +15:34:38.685 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.mbeanserver - org.springframework.boot:type=Admin,name=SpringApplication : Found no object +15:34:38.685 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.misc - Finish a request. +15:34:38.685 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.timeout - Admin: Timestamp=1607499278685 +15:34:38.685 logback [JMX server connection timeout 19] DEBUG javax.management.remote.timeout - Admin: elapsed=0 +15:34:38.686 logback [JMX server connection timeout 19] DEBUG javax.management.remote.timeout - Admin: remaining timeout=119999 +15:34:38.686 logback [JMX server connection timeout 19] DEBUG javax.management.remote.misc - Waiting with timeout: 119999 ms remaining +15:34:38.686 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1] exception: +javax.management.InstanceNotFoundException: org.springframework.boot:type=Admin,name=SpringApplication + at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1095) + at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:643) + at com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:678) + at javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1445) + at javax.management.remote.rmi.RMIConnectionImpl.access$300(RMIConnectionImpl.java:76) + at javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1309) + at javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1401) + at javax.management.remote.rmi.RMIConnectionImpl.getAttribute(RMIConnectionImpl.java:639) + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.lang.reflect.Method.invoke(Method.java:498) + at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:357) + at sun.rmi.transport.Transport$1.run(Transport.java:200) + at sun.rmi.transport.Transport$1.run(Transport.java:197) + at java.security.AccessController.doPrivileged(Native Method) + at sun.rmi.transport.Transport.serviceCall(Transport.java:196) + at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:573) + at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:834) + at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:688) + at java.security.AccessController.doPrivileged(Native Method) + at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:687) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at java.lang.Thread.run(Thread.java:748) +15:34:38.686 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting output stream +15:34:38.690 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) op = 80 +15:34:38.690 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting input stream +15:34:38.690 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: call dispatcher +15:34:38.690 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7ffd, 5973335293310000914]: public abstract void javax.management.remote.rmi.RMIConnection.close() throws java.io.IOException] +15:34:38.690 logback [RMI TCP Connection(1)-127.0.0.1] TRACE javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@7f92d588: connectionId=rmi://127.0.0.1 1] closing. +15:34:38.690 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.misc - terminate the ServerCommunicatorAdmin object. +15:34:38.691 logback [JMX server connection timeout 19] DEBUG javax.management.remote.timeout - Admin: elapsed=6 +15:34:38.691 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - client=javax.management.remote.rmi.RMIConnectionImpl@7f92d588: connectionId=rmi://127.0.0.1 1 +15:34:38.691 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - closing client. +15:34:38.691 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(1)-127.0.0.1: remove object [752891fb:176466c655b:-7ffd, 5973335293310000914] +15:34:38.691 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - sending notif +15:34:38.691 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - done +15:34:38.691 logback [RMI TCP Connection(1)-127.0.0.1] TRACE javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@7f92d588: connectionId=rmi://127.0.0.1 1] closed. +15:34:38.691 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting output stream +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'configurationProperties' +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'servletConfigInitParams' +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'servletContextInitParams' +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'systemProperties' +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'systemEnvironment' +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'random' +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.main.cloud-platform' in any property source +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'configurationProperties' +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'servletConfigInitParams' +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'servletContextInitParams' +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'systemProperties' +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'systemEnvironment' +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'random' +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.698 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.main.cloud-platform' in any property source +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'configurationProperties' +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'servletConfigInitParams' +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'servletContextInitParams' +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'systemProperties' +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'systemEnvironment' +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'random' +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.main.cloud-platform' in any property source +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'configurationProperties' +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'servletConfigInitParams' +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'servletContextInitParams' +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'systemProperties' +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'systemEnvironment' +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'random' +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.main.cloud-platform' in any property source +15:34:38.699 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'configurationProperties' +15:34:38.700 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'servletConfigInitParams' +15:34:38.700 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'servletContextInitParams' +15:34:38.700 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'systemProperties' +15:34:38.700 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'systemEnvironment' +15:34:38.700 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'random' +15:34:38.700 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.main.cloud-platform' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.700 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.main.cloud-platform' in any property source +15:34:38.708 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'errorPageCustomizer' +15:34:38.708 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'errorPageCustomizer' +15:34:38.708 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' +15:34:38.709 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' +15:34:38.709 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +15:34:38.709 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' via constructor to bean named 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +15:34:38.709 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' to allow for resolving potential circular references +15:34:38.710 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' +15:34:38.710 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dispatcherServletRegistration' +15:34:38.710 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'dispatcherServletRegistration' +15:34:38.710 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' +15:34:38.710 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' +15:34:38.711 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' to allow for resolving potential circular references +15:34:38.711 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' +15:34:38.711 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'dispatcherServlet' +15:34:38.711 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'dispatcherServlet' +15:34:38.711 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' +15:34:38.711 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' +15:34:38.712 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' to allow for resolving potential circular references +15:34:38.712 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' +15:34:38.712 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' +15:34:38.712 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' +15:34:38.713 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' to allow for resolving potential circular references +15:34:38.713 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' +15:34:38.715 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' +15:34:38.715 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'dispatcherServlet' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' +15:34:38.723 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'dispatcherServlet' to allow for resolving potential circular references +15:34:38.723 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'dispatcherServlet' +15:34:38.724 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' +15:34:38.724 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'dispatcherServlet' +15:34:38.724 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'dispatcherServletRegistration' via factory method to bean named 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' +15:34:38.725 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'multipartConfigElement' +15:34:38.725 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'multipartConfigElement' +15:34:38.725 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' +15:34:38.725 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' +15:34:38.726 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' +15:34:38.726 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' +15:34:38.726 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' to allow for resolving potential circular references +15:34:38.726 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' +15:34:38.729 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' +15:34:38.729 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' via constructor to bean named 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' +15:34:38.729 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' to allow for resolving potential circular references +15:34:38.730 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' +15:34:38.731 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'multipartConfigElement' to allow for resolving potential circular references +15:34:38.731 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'multipartConfigElement' +15:34:38.733 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'dispatcherServletRegistration' to allow for resolving potential circular references +15:34:38.733 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'dispatcherServletRegistration' +15:34:38.733 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'errorPageCustomizer' via factory method to bean named 'dispatcherServletRegistration' +15:34:38.733 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'errorPageCustomizer' to allow for resolving potential circular references +15:34:38.734 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'errorPageCustomizer' +15:34:38.734 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'tomcatServletWebServerFactory' +15:34:38.743 logback [main] DEBUG o.a.tomcat.util.compat.Jre9Compat - Class not found so assuming code is running on a pre-Java 9 JVM +java.lang.ClassNotFoundException: java.lang.reflect.InaccessibleObjectException + at java.net.URLClassLoader.findClass(URLClassLoader.java:382) + at java.lang.ClassLoader.loadClass(ClassLoader.java:418) + at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:355) + at java.lang.ClassLoader.loadClass(ClassLoader.java:351) + at java.lang.Class.forName0(Native Method) + at java.lang.Class.forName(Class.java:264) + at org.apache.tomcat.util.compat.Jre9Compat.(Jre9Compat.java:83) + at org.apache.tomcat.util.compat.JreCompat.(JreCompat.java:55) + at org.apache.catalina.startup.Tomcat.(Tomcat.java:1303) + at org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory.getWebServer(TomcatServletWebServerFactory.java:186) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.createWebServer(ServletWebServerApplicationContext.java:181) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:159) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:582) + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:144) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:767) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:759) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:426) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:326) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1309) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1298) + at com.dudu.Application.main(Application.java:10) +15:34:38.768 logback [main] DEBUG o.a.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.apache.coyote.http11.Http11NioProtocol port=8080) +15:34:38.773 logback [main] DEBUG o.a.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.apache.coyote.http11.Http11NioProtocol bindOnInit=false) +15:34:38.774 logback [main] DEBUG o.apache.tomcat.util.net.NioEndpoint - Set [bindOnInit] to [false] +15:34:38.774 logback [main] DEBUG o.a.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.apache.tomcat.util.net.NioEndpoint bindOnInit=false) +15:34:38.775 logback [main] DEBUG o.a.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.apache.coyote.http11.Http11NioProtocol maxPostSize=2097152) +15:34:38.776 logback [main] DEBUG o.apache.tomcat.util.net.NioEndpoint - Set [maxPostSize] to [2097152] +15:34:38.776 logback [main] DEBUG o.a.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.apache.tomcat.util.net.NioEndpoint maxPostSize=2097152) +15:34:38.784 logback [main] DEBUG o.apache.catalina.core.ContainerBase - Add child StandardHost[localhost] StandardEngine[Tomcat] +15:34:38.784 logback [main] DEBUG o.s.b.w.e.t.TomcatServletWebServerFactory - Code archive: /home/smart/.m2/repository/org/springframework/boot/spring-boot/2.4.0/spring-boot-2.4.0.jar +15:34:38.784 logback [main] DEBUG o.s.b.w.e.t.TomcatServletWebServerFactory - Code archive: /home/smart/.m2/repository/org/springframework/boot/spring-boot/2.4.0/spring-boot-2.4.0.jar +15:34:38.784 logback [main] DEBUG o.s.b.w.e.t.TomcatServletWebServerFactory - None of the document roots [src/main/webapp, public, static] point to a directory and will be ignored. +15:34:38.796 logback [main] DEBUG o.apache.catalina.core.ContainerBase - Add child TomcatEmbeddedContext[] StandardEngine[Tomcat].StandardHost[localhost] +15:34:38.798 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port(s): 8080 (http) +15:34:38.799 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardServer[-1]] to [INITIALIZING] +15:34:38.802 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@617fe9e1] to [INITIALIZING] +15:34:38.802 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@617fe9e1] to [INITIALIZED] +15:34:38.802 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardService[Tomcat]] to [INITIALIZING] +15:34:38.802 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat]] to [INITIALIZING] +15:34:38.803 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat]] to [INITIALIZED] +15:34:38.803 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.mapper.MapperListener@4d63b624] to [INITIALIZING] +15:34:38.803 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.mapper.MapperListener@4d63b624] to [INITIALIZED] +15:34:38.803 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [Connector[HTTP/1.1-8080]] to [INITIALIZING] +15:34:38.805 logback [main] DEBUG o.a.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.apache.coyote.http11.Http11NioProtocol parseBodyMethods=POST) +15:34:38.805 logback [main] DEBUG o.apache.tomcat.util.net.NioEndpoint - Set [parseBodyMethods] to [POST] +15:34:38.805 logback [main] DEBUG o.a.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.apache.tomcat.util.net.NioEndpoint parseBodyMethods=POST) +15:34:38.805 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +15:34:38.806 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [Connector[HTTP/1.1-8080]] to [INITIALIZED] +15:34:38.806 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardService[Tomcat]] to [INITIALIZED] +15:34:38.806 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardServer[-1]] to [INITIALIZED] +15:34:38.806 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardServer[-1]] to [STARTING_PREP] +15:34:38.806 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardServer[-1]] to [STARTING] +15:34:38.806 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@617fe9e1] to [STARTING_PREP] +15:34:38.806 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@617fe9e1] to [STARTING] +15:34:38.806 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@617fe9e1] to [STARTED] +15:34:38.806 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardService[Tomcat]] to [STARTING_PREP] +15:34:38.806 logback [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +15:34:38.806 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardService[Tomcat]] to [STARTING] +15:34:38.806 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat]] to [STARTING_PREP] +15:34:38.807 logback [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.39] +15:34:38.807 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZING] +15:34:38.808 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [INITIALIZED] +15:34:38.808 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING_PREP] +15:34:38.808 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTING] +15:34:38.808 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [SimpleRealm[StandardEngine[Tomcat]]] to [STARTED] +15:34:38.808 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZING] +15:34:38.809 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [INITIALIZED] +15:34:38.809 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING_PREP] +15:34:38.809 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZING] +15:34:38.809 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [INITIALIZED] +15:34:38.809 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING_PREP] +15:34:38.810 logback [main] DEBUG o.a.catalina.core.StandardContext - Starting ROOT +15:34:38.812 logback [main] DEBUG o.a.catalina.core.StandardContext - Configuring default Resources +15:34:38.814 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.StandardRoot@127e70c5] to [INITIALIZING] +15:34:38.815 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.StandardRoot@127e70c5] to [INITIALIZED] +15:34:38.815 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.StandardRoot@127e70c5] to [STARTING_PREP] +15:34:38.816 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.DirResourceSet@1494b84d] to [INITIALIZING] +15:34:38.817 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.DirResourceSet@1494b84d] to [INITIALIZED] +15:34:38.817 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.DirResourceSet@1494b84d] to [STARTING_PREP] +15:34:38.817 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.DirResourceSet@1494b84d] to [STARTING] +15:34:38.817 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.DirResourceSet@1494b84d] to [STARTED] +15:34:38.817 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.StandardRoot@127e70c5] to [STARTING] +15:34:38.818 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.StandardRoot@127e70c5] to [STARTED] +15:34:38.830 logback [main] DEBUG o.a.catalina.core.StandardContext - Processing standard container startup +15:34:38.830 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] +15:34:38.830 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] +15:34:38.830 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] +15:34:38.830 logback [main] DEBUG o.a.catalina.loader.WebappLoader - Starting this Loader +15:34:38.833 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] +15:34:38.833 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [WebappLoader[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] +15:34:38.833 logback [main] DEBUG o.a.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesRmiTargets=false) +15:34:38.834 logback [main] DEBUG o.a.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesStopThreads=false) +15:34:38.834 logback [main] DEBUG o.a.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesStopTimerThreads=false) +15:34:38.834 logback [main] DEBUG o.a.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesHttpClientKeepAliveThread=true) +15:34:38.834 logback [main] DEBUG o.a.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesObjectStreamClassCaches=false) +15:34:38.834 logback [main] DEBUG o.a.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesObjectStreamClassCaches=false) +15:34:38.834 logback [main] DEBUG o.a.tomcat.util.IntrospectionUtils - IntrospectionUtils: setProperty(class org.springframework.boot.web.embedded.tomcat.TomcatEmbeddedWebappClassLoader clearReferencesThreadLocals=false) +15:34:38.842 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.DirResourceSet@2f3c6ac4] to [INITIALIZING] +15:34:38.843 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.DirResourceSet@2f3c6ac4] to [INITIALIZED] +15:34:38.843 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.DirResourceSet@2f3c6ac4] to [STARTING_PREP] +15:34:38.843 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.DirResourceSet@2f3c6ac4] to [STARTING] +15:34:38.843 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.webresources.DirResourceSet@2f3c6ac4] to [STARTED] +15:34:38.843 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] +15:34:38.843 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] +15:34:38.844 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] +15:34:38.844 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] +15:34:38.844 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] +15:34:38.844 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] +15:34:38.845 logback [main] DEBUG o.a.c.a.AuthenticatorBase - No SingleSignOn Valve is present +15:34:38.845 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] +15:34:38.846 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] +15:34:38.846 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] +15:34:38.846 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] +15:34:38.846 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] +15:34:38.846 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] +15:34:38.846 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardContextValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] +15:34:38.846 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] +15:34:38.846 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] +15:34:38.846 logback [main] DEBUG o.a.catalina.core.StandardContext - No manager found. Checking if cluster manager should be used. Cluster configured: [false], Application distributable: [false] +15:34:38.849 logback [main] DEBUG o.a.catalina.core.StandardContext - Configured a manager of class [org.apache.catalina.session.StandardManager] +15:34:38.851 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@5149f008] to [INITIALIZING] +15:34:38.851 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@5149f008] to [INITIALIZED] +15:34:38.852 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@5149f008] to [STARTING_PREP] +15:34:38.852 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@5149f008] to [STARTING] +15:34:38.852 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.deploy.NamingResourcesImpl@5149f008] to [STARTED] +15:34:38.859 logback [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +15:34:38.860 logback [main] DEBUG o.s.b.w.s.c.ServletWebServerApplicationContext - Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT] +15:34:38.860 logback [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 684 ms +15:34:38.861 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Registering scope 'application' with implementation [org.springframework.web.context.support.ServletContextScope@37d80fe7] +15:34:38.862 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'dispatcherServletRegistration' +15:34:38.863 logback [main] TRACE o.s.b.w.s.ServletContextInitializerBeans - Added existing Servlet initializer bean 'dispatcherServletRegistration'; order=2147483647, resource=class path resource [org/springframework/boot/autoconfigure/web/servlet/DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration.class] +15:34:38.863 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'multipartConfigElement' +15:34:38.864 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'dispatcherServlet' +15:34:38.865 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'characterEncodingFilter' +15:34:38.865 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'characterEncodingFilter' +15:34:38.865 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' +15:34:38.866 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'characterEncodingFilter' to allow for resolving potential circular references +15:34:38.866 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Invoking afterPropertiesSet() on bean with name 'characterEncodingFilter' +15:34:38.866 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'characterEncodingFilter' +15:34:38.867 logback [main] TRACE o.s.b.w.s.ServletContextInitializerBeans - Created Filter initializer for bean 'characterEncodingFilter'; order=-2147483648, resource=class path resource [org/springframework/boot/autoconfigure/web/servlet/HttpEncodingAutoConfiguration.class] +15:34:38.870 logback [main] DEBUG o.s.b.w.s.ServletContextInitializerBeans - Mapping filters: characterEncodingFilter urls=[/*] order=-2147483648 +15:34:38.870 logback [main] DEBUG o.s.b.w.s.ServletContextInitializerBeans - Mapping servlets: dispatcherServlet urls=[/] +15:34:38.872 logback [main] DEBUG o.apache.catalina.core.ContainerBase - Add child StandardWrapper[dispatcherServlet] StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[] +15:34:38.872 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZING] +15:34:38.873 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [INITIALIZED] +15:34:38.873 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING_PREP] +15:34:38.873 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] +15:34:38.874 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] +15:34:38.874 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] +15:34:38.874 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZING] +15:34:38.874 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [INITIALIZED] +15:34:38.874 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING_PREP] +15:34:38.874 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] +15:34:38.874 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardWrapperValve[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] +15:34:38.874 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTING] +15:34:38.874 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]]] to [STARTED] +15:34:38.875 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTING] +15:34:38.875 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[].StandardWrapper[dispatcherServlet]] to [STARTED] +15:34:38.887 logback [main] DEBUG o.a.catalina.core.StandardContext - Configuring application event listeners +15:34:38.888 logback [main] DEBUG o.a.c.c.C.[Tomcat].[localhost].[/] - Sending application start events +15:34:38.888 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZING] +15:34:38.889 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [INITIALIZED] +15:34:38.889 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING_PREP] +15:34:38.889 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@27f9e982] to [INITIALIZING] +15:34:38.889 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@27f9e982] to [INITIALIZED] +15:34:38.889 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@27f9e982] to [STARTING_PREP] +15:34:38.890 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@27f9e982] to [STARTING] +15:34:38.890 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.springframework.boot.web.embedded.tomcat.LazySessionIdGenerator@27f9e982] to [STARTED] +15:34:38.890 logback [main] DEBUG o.a.catalina.session.StandardManager - Start: Loading persisted sessions +15:34:38.890 logback [main] DEBUG o.a.catalina.session.StandardManager - Loading persisted sessions from [SESSIONS.ser] +15:34:38.890 logback [main] DEBUG o.a.catalina.session.StandardManager - No persisted data file found +15:34:38.891 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTING] +15:34:38.891 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardManager[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]] to [STARTED] +15:34:38.891 logback [main] DEBUG o.a.c.c.C.[Tomcat].[localhost].[/] - Starting filters +15:34:38.891 logback [main] DEBUG o.a.c.c.C.[Tomcat].[localhost].[/] - Starting filter 'Tomcat WebSocket (JSR356) Filter' +15:34:38.892 logback [main] DEBUG o.a.c.c.C.[Tomcat].[localhost].[/] - Starting filter 'characterEncodingFilter' +15:34:38.893 logback [main] DEBUG o.s.b.w.s.f.OrderedCharacterEncodingFilter - Filter 'characterEncodingFilter' configured for use +15:34:38.893 logback [main] DEBUG o.a.catalina.core.StandardContext - Starting completed +15:34:38.894 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTING] +15:34:38.894 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]] to [STARTED] +15:34:38.895 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] +15:34:38.895 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] +15:34:38.895 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] +15:34:38.895 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] +15:34:38.895 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] +15:34:38.895 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] +15:34:38.895 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] +15:34:38.895 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [ErrorReportValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] +15:34:38.895 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZING] +15:34:38.895 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [INITIALIZED] +15:34:38.895 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING_PREP] +15:34:38.896 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] +15:34:38.896 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardHostValve[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] +15:34:38.896 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTING] +15:34:38.896 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat].StandardHost[localhost]]] to [STARTED] +15:34:38.896 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTING] +15:34:38.896 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat].StandardHost[localhost]] to [STARTED] +15:34:38.896 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZING] +15:34:38.896 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [INITIALIZED] +15:34:38.896 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING_PREP] +15:34:38.896 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZING] +15:34:38.897 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [INITIALIZED] +15:34:38.897 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING_PREP] +15:34:38.897 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTING] +15:34:38.897 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngineValve[StandardEngine[Tomcat]]] to [STARTED] +15:34:38.897 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTING] +15:34:38.897 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardPipeline[StandardEngine[Tomcat]]] to [STARTED] +15:34:38.897 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat]] to [STARTING] +15:34:38.898 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardEngine[Tomcat]] to [STARTED] +15:34:38.898 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.mapper.MapperListener@4d63b624] to [STARTING_PREP] +15:34:38.898 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.mapper.MapperListener@4d63b624] to [STARTING] +15:34:38.899 logback [main] DEBUG org.apache.catalina.mapper.Mapper - Registered host [localhost] +15:34:38.900 logback [main] DEBUG o.a.catalina.mapper.MapperListener - Register Wrapper [dispatcherServlet] in Context [] for service [StandardService[Tomcat]] +15:34:38.900 logback [main] DEBUG o.a.catalina.mapper.MapperListener - Register Context [] for service [StandardService[Tomcat]] +15:34:38.900 logback [main] DEBUG o.a.catalina.mapper.MapperListener - Register host [localhost] at domain [null] for service [StandardService[Tomcat]] +15:34:38.900 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [org.apache.catalina.mapper.MapperListener@4d63b624] to [STARTED] +15:34:38.900 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardService[Tomcat]] to [STARTED] +15:34:38.901 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [StandardServer[-1]] to [STARTED] +15:34:38.905 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Pre-instantiating singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@514646ef: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.event.internalEventListenerProcessor,org.springframework.context.event.internalEventListenerFactory,application,org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory,myWebMvcConfigurationSupport,learnController,myInterceptor,requestMappingHandlerMapping,mvcUrlPathHelper,mvcPathMatcher,mvcContentNegotiationManager,viewControllerHandlerMapping,beanNameHandlerMapping,routerFunctionMapping,resourceHandlerMapping,mvcResourceUrlProvider,defaultServletHandlerMapping,requestMappingHandlerAdapter,handlerFunctionAdapter,mvcConversionService,mvcValidator,mvcUriComponentsContributor,httpRequestHandlerAdapter,simpleControllerHandlerAdapter,handlerExceptionResolver,mvcViewResolver,mvcHandlerMappingIntrospector,localeResolver,themeResolver,flashMapManager,viewNameTranslator,org.springframework.boot.autoconfigure.AutoConfigurationPackages,org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration,propertySourcesPlaceholderConfigurer,org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration,websocketServletWebServerCustomizer,org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration,org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat,tomcatServletWebServerFactory,org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration,servletWebServerFactoryCustomizer,tomcatServletWebServerFactoryCustomizer,org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor,org.springframework.boot.context.internalConfigurationPropertiesBinderFactory,org.springframework.boot.context.internalConfigurationPropertiesBinder,org.springframework.boot.context.properties.BoundConfigurationProperties,org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter,server-org.springframework.boot.autoconfigure.web.ServerProperties,webServerFactoryCustomizerBeanPostProcessor,errorPageRegistrarBeanPostProcessor,org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration,dispatcherServlet,spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties,org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration,dispatcherServletRegistration,org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration,org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration,taskExecutorBuilder,applicationTaskExecutor,spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties,org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration,error,beanNameViewResolver,org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration,conventionErrorViewResolver,spring.web-org.springframework.boot.autoconfigure.web.WebProperties,spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties,org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration,errorAttributes,basicErrorController,errorPageCustomizer,preserveErrorControllerTargetClassPostProcessor,org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration,mbeanExporter,objectNamingStrategy,mbeanServer,org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration,springApplicationAdminRegistrar,org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration,org.springframework.boot.autoconfigure.aop.AopAutoConfiguration,org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration,applicationAvailability,org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration,org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration,lifecycleProcessor,spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration,standardJacksonObjectMapperBuilderCustomizer,spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration,jacksonObjectMapperBuilder,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration,parameterNamesModule,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration,jacksonObjectMapper,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration,jsonComponentModule,org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration,stringHttpMessageConverter,org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration,mappingJackson2HttpMessageConverter,org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration,org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration,messageConverters,org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration,spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties,org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration,taskSchedulerBuilder,spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafJava8TimeDialect,java8TimeDialect,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration$ThymeleafViewResolverConfiguration,thymeleafViewResolver,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration,templateEngine,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration,defaultTemplateResolver,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration,spring.thymeleaf-org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties,org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration,restTemplateBuilderConfigurer,restTemplateBuilder,org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration,tomcatWebServerFactoryCustomizer,org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration,org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration,characterEncodingFilter,localeCharsetMappingsCustomizer,org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration,multipartConfigElement,multipartResolver,spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties]; root of factory hierarchy +15:34:38.905 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor' +15:34:38.905 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor' +15:34:38.905 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.context.annotation.internalCommonAnnotationProcessor' +15:34:38.905 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.context.event.internalEventListenerProcessor' +15:34:38.905 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.context.event.internalEventListenerFactory' +15:34:38.905 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'application' +15:34:38.905 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'application' +15:34:38.906 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'application' to allow for resolving potential circular references +15:34:38.906 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'application' +15:34:38.906 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' +15:34:38.907 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:38.907 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'myWebMvcConfigurationSupport' +15:34:38.909 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'myWebMvcConfigurationSupport' to allow for resolving potential circular references +15:34:38.911 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'myInterceptor' +15:34:38.911 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'myInterceptor' +15:34:38.911 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'myInterceptor' to allow for resolving potential circular references +15:34:38.911 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'myInterceptor' +15:34:38.911 logback [main] TRACE o.s.b.f.a.AutowiredAnnotationBeanPostProcessor - Autowiring by type from bean name 'myWebMvcConfigurationSupport' to bean named 'myInterceptor' +15:34:38.912 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'myWebMvcConfigurationSupport' +15:34:38.912 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'learnController' +15:34:38.912 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'learnController' +15:34:38.913 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'learnController' to allow for resolving potential circular references +15:34:38.913 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'learnController' +15:34:38.913 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myInterceptor' +15:34:38.913 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'requestMappingHandlerMapping' +15:34:38.913 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'requestMappingHandlerMapping' +15:34:38.913 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:38.917 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcContentNegotiationManager' +15:34:38.917 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'mvcContentNegotiationManager' +15:34:38.917 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:38.934 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'mvcContentNegotiationManager' to allow for resolving potential circular references +15:34:38.934 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'mvcContentNegotiationManager' +15:34:38.934 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcConversionService' +15:34:38.934 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'mvcConversionService' +15:34:38.934 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:38.936 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'mvcConversionService' to allow for resolving potential circular references +15:34:38.936 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'mvcConversionService' +15:34:38.936 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcResourceUrlProvider' +15:34:38.936 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'mvcResourceUrlProvider' +15:34:38.937 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:38.937 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'mvcResourceUrlProvider' to allow for resolving potential circular references +15:34:38.937 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'mvcResourceUrlProvider' +15:34:38.937 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' +15:34:38.937 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcConversionService' +15:34:38.937 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestMappingHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' +15:34:38.957 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'requestMappingHandlerMapping' to allow for resolving potential circular references +15:34:38.958 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Invoking afterPropertiesSet() on bean with name 'requestMappingHandlerMapping' +15:34:38.966 logback [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - + c.d.c.LearnController: + {POST [/login]}: login(HttpServletRequest,HttpServletResponse) + { [/learn]}: index() +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'environmentProperties' +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'configurationProperties' +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'servletConfigInitParams' +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'servletContextInitParams' +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'systemProperties' +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'systemEnvironment' +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'random' +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'error.path:/error' in any property source +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'localProperties' +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'error.path:/error' in any property source +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'environmentProperties' +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'configurationProperties' +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'servletConfigInitParams' +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'servletContextInitParams' +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'systemProperties' +15:34:38.970 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'systemEnvironment' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'random' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'error.path' in any property source +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'localProperties' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'error.path' in any property source +15:34:38.971 logback [main] TRACE o.s.util.PropertyPlaceholderHelper - Resolved placeholder 'error.path:/error' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'environmentProperties' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'configurationProperties' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'servletConfigInitParams' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'servletContextInitParams' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'systemProperties' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'systemEnvironment' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'random' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'server.error.path:/error' in any property source +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'localProperties' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'server.error.path:/error' in any property source +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'environmentProperties' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'configurationProperties' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'servletConfigInitParams' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'servletContextInitParams' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'systemProperties' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'systemEnvironment' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'random' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'server.error.path' in any property source +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'localProperties' +15:34:38.971 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'server.error.path' in any property source +15:34:38.971 logback [main] TRACE o.s.util.PropertyPlaceholderHelper - Resolved placeholder 'server.error.path:/error' +15:34:38.973 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'environmentProperties' +15:34:38.973 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'configurationProperties' +15:34:38.973 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'servletConfigInitParams' +15:34:38.973 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'servletContextInitParams' +15:34:38.973 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'systemProperties' +15:34:38.973 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'systemEnvironment' +15:34:38.973 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'random' +15:34:38.973 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.973 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'error.path:/error' in any property source +15:34:38.973 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path:/error' in PropertySource 'localProperties' +15:34:38.973 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'error.path:/error' in any property source +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'environmentProperties' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'configurationProperties' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'servletConfigInitParams' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'servletContextInitParams' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'systemProperties' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'systemEnvironment' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'random' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'error.path' in any property source +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'error.path' in PropertySource 'localProperties' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'error.path' in any property source +15:34:38.974 logback [main] TRACE o.s.util.PropertyPlaceholderHelper - Resolved placeholder 'error.path:/error' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'environmentProperties' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'configurationProperties' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'servletConfigInitParams' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'servletContextInitParams' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'systemProperties' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'systemEnvironment' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'random' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'server.error.path:/error' in any property source +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path:/error' in PropertySource 'localProperties' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'server.error.path:/error' in any property source +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'environmentProperties' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'configurationProperties' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'servletConfigInitParams' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'servletContextInitParams' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'systemProperties' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'systemEnvironment' +15:34:38.974 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'random' +15:34:38.975 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:38.975 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'server.error.path' in any property source +15:34:38.975 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.error.path' in PropertySource 'localProperties' +15:34:38.975 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'server.error.path' in any property source +15:34:38.975 logback [main] TRACE o.s.util.PropertyPlaceholderHelper - Resolved placeholder 'server.error.path:/error' +15:34:38.975 logback [main] TRACE o.s.w.s.m.m.a.RequestMappingHandlerMapping - + o.s.b.a.w.s.e.BasicErrorController: + { [/error], produces [text/html]}: errorHtml(HttpServletRequest,HttpServletResponse) + { [/error]}: error(HttpServletRequest) +15:34:38.978 logback [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerMapping - 4 mappings in 'requestMappingHandlerMapping' +15:34:38.979 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'requestMappingHandlerMapping' +15:34:38.979 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcUrlPathHelper' +15:34:38.979 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'mvcUrlPathHelper' +15:34:38.979 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:38.979 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'mvcUrlPathHelper' to allow for resolving potential circular references +15:34:38.979 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'mvcUrlPathHelper' +15:34:38.979 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcPathMatcher' +15:34:38.979 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'mvcPathMatcher' +15:34:38.980 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:38.980 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'mvcPathMatcher' to allow for resolving potential circular references +15:34:38.980 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'mvcPathMatcher' +15:34:38.980 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcContentNegotiationManager' +15:34:38.980 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'viewControllerHandlerMapping' +15:34:38.980 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'viewControllerHandlerMapping' +15:34:38.980 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:38.980 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcConversionService' +15:34:38.980 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcResourceUrlProvider' +15:34:38.980 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcConversionService' +15:34:38.981 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'viewControllerHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' +15:34:38.983 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'viewControllerHandlerMapping' to allow for resolving potential circular references +15:34:38.983 logback [main] TRACE o.s.w.s.h.SimpleUrlHandlerMapping - Mapped [/toLogin] onto ParameterizableViewController [view="login"] +15:34:38.983 logback [main] TRACE o.s.w.s.h.SimpleUrlHandlerMapping - Mapped [/hi] onto ParameterizableViewController [view="login"] +15:34:38.983 logback [main] DEBUG o.s.w.s.h.SimpleUrlHandlerMapping - Patterns [/toLogin, /hi] in 'viewControllerHandlerMapping' +15:34:38.984 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'viewControllerHandlerMapping' +15:34:38.984 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'beanNameHandlerMapping' +15:34:38.984 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'beanNameHandlerMapping' +15:34:38.984 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:38.984 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcConversionService' +15:34:38.984 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcResourceUrlProvider' +15:34:38.984 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcConversionService' +15:34:38.984 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'beanNameHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' +15:34:38.985 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'beanNameHandlerMapping' to allow for resolving potential circular references +15:34:38.986 logback [main] DEBUG o.s.w.s.h.BeanNameUrlHandlerMapping - Detected 0 mappings in 'beanNameHandlerMapping' +15:34:38.986 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'beanNameHandlerMapping' +15:34:38.986 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'routerFunctionMapping' +15:34:38.986 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'routerFunctionMapping' +15:34:38.986 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:38.986 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcConversionService' +15:34:38.986 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcResourceUrlProvider' +15:34:38.986 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcConversionService' +15:34:38.987 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'routerFunctionMapping' via factory method to bean named 'mvcResourceUrlProvider' +15:34:38.990 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'routerFunctionMapping' to allow for resolving potential circular references +15:34:38.990 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Invoking afterPropertiesSet() on bean with name 'routerFunctionMapping' +15:34:38.991 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'routerFunctionMapping' +15:34:38.991 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'resourceHandlerMapping' +15:34:38.991 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'resourceHandlerMapping' +15:34:38.991 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:38.991 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcContentNegotiationManager' +15:34:38.991 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcConversionService' +15:34:38.992 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcResourceUrlProvider' +15:34:38.992 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcContentNegotiationManager' +15:34:38.992 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcConversionService' +15:34:38.992 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'resourceHandlerMapping' via factory method to bean named 'mvcResourceUrlProvider' +15:34:38.995 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'resourceHandlerMapping' to allow for resolving potential circular references +15:34:38.996 logback [main] TRACE o.s.w.s.h.SimpleUrlHandlerMapping - Mapped [/**] onto ResourceHttpRequestHandler ["classpath:/static/", "classpath:/public/"] +15:34:38.996 logback [main] DEBUG o.s.w.s.h.SimpleUrlHandlerMapping - Patterns [/**] in 'resourceHandlerMapping' +15:34:38.996 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'resourceHandlerMapping' +15:34:38.996 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcResourceUrlProvider' +15:34:38.996 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultServletHandlerMapping' +15:34:38.996 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'defaultServletHandlerMapping' +15:34:38.996 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:38.997 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'defaultServletHandlerMapping' to allow for resolving potential circular references +15:34:38.997 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'defaultServletHandlerMapping' +15:34:38.997 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'requestMappingHandlerAdapter' +15:34:38.997 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'requestMappingHandlerAdapter' +15:34:38.997 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:38.997 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcContentNegotiationManager' +15:34:38.997 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcConversionService' +15:34:38.997 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcValidator' +15:34:38.997 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'mvcValidator' +15:34:38.997 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:38.998 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'mvcValidator' to allow for resolving potential circular references +15:34:38.999 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'mvcValidator' +15:34:38.999 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcContentNegotiationManager' +15:34:38.999 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcConversionService' +15:34:38.999 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'requestMappingHandlerAdapter' via factory method to bean named 'mvcValidator' +15:34:39.008 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'requestMappingHandlerAdapter' to allow for resolving potential circular references +15:34:39.008 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Invoking afterPropertiesSet() on bean with name 'requestMappingHandlerAdapter' +15:34:39.010 logback [main] DEBUG o.s.w.s.m.m.a.RequestMappingHandlerAdapter - ControllerAdvice beans: 0 @ModelAttribute, 0 @InitBinder, 1 RequestBodyAdvice, 1 ResponseBodyAdvice +15:34:39.022 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'requestMappingHandlerAdapter' +15:34:39.022 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'handlerFunctionAdapter' +15:34:39.022 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'handlerFunctionAdapter' +15:34:39.023 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:39.023 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'handlerFunctionAdapter' to allow for resolving potential circular references +15:34:39.023 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'handlerFunctionAdapter' +15:34:39.023 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcConversionService' +15:34:39.023 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcValidator' +15:34:39.023 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcUriComponentsContributor' +15:34:39.023 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'mvcUriComponentsContributor' +15:34:39.023 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:39.024 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcConversionService' +15:34:39.024 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'requestMappingHandlerAdapter' +15:34:39.024 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'mvcConversionService' +15:34:39.024 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'mvcUriComponentsContributor' via factory method to bean named 'requestMappingHandlerAdapter' +15:34:39.025 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'mvcUriComponentsContributor' to allow for resolving potential circular references +15:34:39.025 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'mvcUriComponentsContributor' +15:34:39.025 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'httpRequestHandlerAdapter' +15:34:39.025 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'httpRequestHandlerAdapter' +15:34:39.025 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:39.026 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'httpRequestHandlerAdapter' to allow for resolving potential circular references +15:34:39.026 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'httpRequestHandlerAdapter' +15:34:39.026 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'simpleControllerHandlerAdapter' +15:34:39.026 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'simpleControllerHandlerAdapter' +15:34:39.026 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:39.026 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'simpleControllerHandlerAdapter' to allow for resolving potential circular references +15:34:39.026 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'simpleControllerHandlerAdapter' +15:34:39.026 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'handlerExceptionResolver' +15:34:39.026 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'handlerExceptionResolver' +15:34:39.027 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:39.027 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcContentNegotiationManager' +15:34:39.027 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'handlerExceptionResolver' via factory method to bean named 'mvcContentNegotiationManager' +15:34:39.029 logback [main] DEBUG o.s.w.s.m.m.a.ExceptionHandlerExceptionResolver - ControllerAdvice beans: 0 @ExceptionHandler, 1 ResponseBodyAdvice +15:34:39.030 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'handlerExceptionResolver' to allow for resolving potential circular references +15:34:39.030 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'handlerExceptionResolver' +15:34:39.030 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mvcViewResolver' +15:34:39.030 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'mvcViewResolver' +15:34:39.030 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:39.031 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcContentNegotiationManager' +15:34:39.031 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'mvcViewResolver' via factory method to bean named 'mvcContentNegotiationManager' +15:34:39.031 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'mvcViewResolver' to allow for resolving potential circular references +15:34:39.031 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Invoking afterPropertiesSet() on bean with name 'mvcViewResolver' +15:34:39.032 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'mvcViewResolver' +15:34:39.032 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'localeResolver' +15:34:39.032 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'localeResolver' +15:34:39.032 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:39.032 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'localeResolver' to allow for resolving potential circular references +15:34:39.032 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'localeResolver' +15:34:39.032 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'themeResolver' +15:34:39.032 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'themeResolver' +15:34:39.032 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:39.033 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'themeResolver' to allow for resolving potential circular references +15:34:39.033 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'themeResolver' +15:34:39.033 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'flashMapManager' +15:34:39.033 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'flashMapManager' +15:34:39.033 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:39.034 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'flashMapManager' to allow for resolving potential circular references +15:34:39.034 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'flashMapManager' +15:34:39.034 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'viewNameTranslator' +15:34:39.034 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'viewNameTranslator' +15:34:39.034 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'myWebMvcConfigurationSupport' +15:34:39.035 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'viewNameTranslator' to allow for resolving potential circular references +15:34:39.035 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'viewNameTranslator' +15:34:39.035 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' +15:34:39.035 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' +15:34:39.035 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' to allow for resolving potential circular references +15:34:39.035 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.AutoConfigurationPackages' +15:34:39.035 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' +15:34:39.035 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' +15:34:39.035 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' to allow for resolving potential circular references +15:34:39.035 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration' +15:34:39.035 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'propertySourcesPlaceholderConfigurer' +15:34:39.035 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration' +15:34:39.036 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'websocketServletWebServerCustomizer' +15:34:39.036 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' +15:34:39.036 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' +15:34:39.036 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' to allow for resolving potential circular references +15:34:39.036 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration' +15:34:39.036 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat' +15:34:39.036 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'tomcatServletWebServerFactory' +15:34:39.036 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration' +15:34:39.036 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'servletWebServerFactoryCustomizer' +15:34:39.036 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'tomcatServletWebServerFactoryCustomizer' +15:34:39.036 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor' +15:34:39.036 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinderFactory' +15:34:39.036 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.context.internalConfigurationPropertiesBinder' +15:34:39.036 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' +15:34:39.036 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' +15:34:39.036 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' +15:34:39.037 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' to allow for resolving potential circular references +15:34:39.037 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter' +15:34:39.037 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'server-org.springframework.boot.autoconfigure.web.ServerProperties' +15:34:39.037 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'webServerFactoryCustomizerBeanPostProcessor' +15:34:39.037 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'errorPageRegistrarBeanPostProcessor' +15:34:39.037 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration' +15:34:39.037 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'dispatcherServlet' +15:34:39.037 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties' +15:34:39.037 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration' +15:34:39.037 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'dispatcherServletRegistration' +15:34:39.037 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' +15:34:39.037 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' +15:34:39.037 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' to allow for resolving potential circular references +15:34:39.037 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration' +15:34:39.037 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' +15:34:39.037 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' +15:34:39.038 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' to allow for resolving potential circular references +15:34:39.038 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' +15:34:39.038 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskExecutorBuilder' +15:34:39.038 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'taskExecutorBuilder' +15:34:39.038 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration' +15:34:39.038 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' +15:34:39.038 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' +15:34:39.039 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' to allow for resolving potential circular references +15:34:39.039 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' +15:34:39.040 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' +15:34:39.040 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'taskExecutorBuilder' via factory method to bean named 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' +15:34:39.041 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'taskExecutorBuilder' to allow for resolving potential circular references +15:34:39.041 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'taskExecutorBuilder' +15:34:39.041 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties' +15:34:39.041 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' +15:34:39.041 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' +15:34:39.042 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' to allow for resolving potential circular references +15:34:39.042 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' +15:34:39.042 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'error' +15:34:39.042 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'error' +15:34:39.042 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' +15:34:39.042 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'error' to allow for resolving potential circular references +15:34:39.042 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'error' +15:34:39.042 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'beanNameViewResolver' +15:34:39.042 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'beanNameViewResolver' +15:34:39.042 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration' +15:34:39.042 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'beanNameViewResolver' to allow for resolving potential circular references +15:34:39.042 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'beanNameViewResolver' +15:34:39.043 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' +15:34:39.043 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' +15:34:39.043 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties' +15:34:39.043 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties' +15:34:39.045 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties' to allow for resolving potential circular references +15:34:39.045 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' +15:34:39.046 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties' +15:34:39.046 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' +15:34:39.046 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' +15:34:39.046 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' to allow for resolving potential circular references +15:34:39.046 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' +15:34:39.047 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' +15:34:39.047 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@68e965f5' +15:34:39.047 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties' +15:34:39.047 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' via constructor to bean named 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' +15:34:39.047 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' to allow for resolving potential circular references +15:34:39.047 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' +15:34:39.047 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'conventionErrorViewResolver' +15:34:39.047 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'conventionErrorViewResolver' +15:34:39.047 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration' +15:34:39.047 logback [main] TRACE o.s.c.i.s.SpringFactoriesLoader - Loaded [org.springframework.boot.autoconfigure.template.TemplateAvailabilityProvider] names: [org.springframework.boot.autoconfigure.freemarker.FreeMarkerTemplateAvailabilityProvider, org.springframework.boot.autoconfigure.mustache.MustacheTemplateAvailabilityProvider, org.springframework.boot.autoconfigure.groovy.template.GroovyTemplateAvailabilityProvider, org.springframework.boot.autoconfigure.thymeleaf.ThymeleafTemplateAvailabilityProvider, org.springframework.boot.autoconfigure.web.servlet.JspTemplateAvailabilityProvider] +15:34:39.048 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'conventionErrorViewResolver' to allow for resolving potential circular references +15:34:39.048 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'conventionErrorViewResolver' +15:34:39.048 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'spring.web-org.springframework.boot.autoconfigure.web.WebProperties' +15:34:39.048 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties' +15:34:39.048 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' +15:34:39.048 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'errorAttributes' +15:34:39.048 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'errorAttributes' +15:34:39.048 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' +15:34:39.049 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'errorAttributes' to allow for resolving potential circular references +15:34:39.049 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'errorAttributes' +15:34:39.049 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'basicErrorController' +15:34:39.049 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'basicErrorController' +15:34:39.049 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration' +15:34:39.049 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'errorAttributes' +15:34:39.049 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'basicErrorController' via factory method to bean named 'errorAttributes' +15:34:39.049 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'conventionErrorViewResolver' +15:34:39.049 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'conventionErrorViewResolver' +15:34:39.050 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'basicErrorController' to allow for resolving potential circular references +15:34:39.050 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'basicErrorController' +15:34:39.050 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'errorPageCustomizer' +15:34:39.050 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'preserveErrorControllerTargetClassPostProcessor' +15:34:39.050 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' +15:34:39.050 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' +15:34:39.050 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'environment' +15:34:39.050 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' via constructor to bean named 'environment' +15:34:39.050 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' to allow for resolving potential circular references +15:34:39.050 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' +15:34:39.050 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mbeanExporter' +15:34:39.051 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'mbeanExporter' +15:34:39.051 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' +15:34:39.051 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'objectNamingStrategy' +15:34:39.051 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'objectNamingStrategy' +15:34:39.051 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.default-domain' in PropertySource 'configurationProperties' +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.default-domain' in PropertySource 'servletConfigInitParams' +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.default-domain' in PropertySource 'servletContextInitParams' +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.default-domain' in PropertySource 'systemProperties' +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.default-domain' in PropertySource 'systemEnvironment' +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.default-domain' in PropertySource 'random' +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.default-domain' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.jmx.default-domain' in any property source +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.unique-names' in PropertySource 'configurationProperties' +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.unique-names' in PropertySource 'servletConfigInitParams' +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.unique-names' in PropertySource 'servletContextInitParams' +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.unique-names' in PropertySource 'systemProperties' +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.unique-names' in PropertySource 'systemEnvironment' +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.unique-names' in PropertySource 'random' +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.unique-names' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:39.052 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.jmx.unique-names' in any property source +15:34:39.052 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'objectNamingStrategy' to allow for resolving potential circular references +15:34:39.052 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Invoking afterPropertiesSet() on bean with name 'objectNamingStrategy' +15:34:39.053 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'objectNamingStrategy' +15:34:39.053 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'objectNamingStrategy' +15:34:39.053 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'mbeanExporter' via factory method to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@514646ef' +15:34:39.056 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.server' in PropertySource 'configurationProperties' +15:34:39.056 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.server' in PropertySource 'servletConfigInitParams' +15:34:39.056 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.server' in PropertySource 'servletContextInitParams' +15:34:39.056 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.server' in PropertySource 'systemProperties' +15:34:39.056 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.server' in PropertySource 'systemEnvironment' +15:34:39.056 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.server' in PropertySource 'random' +15:34:39.056 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.jmx.server' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:39.056 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.jmx.server' in any property source +15:34:39.056 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mbeanServer' +15:34:39.056 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'mbeanServer' +15:34:39.056 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration' +15:34:39.058 logback [main] DEBUG o.s.jmx.support.JmxUtils - Found MBeanServer: com.sun.jmx.mbeanserver.JmxMBeanServer@3b9a45b3 +15:34:39.058 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'mbeanServer' to allow for resolving potential circular references +15:34:39.058 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'mbeanServer' +15:34:39.060 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'mbeanExporter' to allow for resolving potential circular references +15:34:39.060 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Invoking afterPropertiesSet() on bean with name 'mbeanExporter' +15:34:39.061 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'mbeanExporter' +15:34:39.061 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'objectNamingStrategy' +15:34:39.061 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mbeanServer' +15:34:39.061 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' +15:34:39.061 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' +15:34:39.061 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' to allow for resolving potential circular references +15:34:39.061 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' +15:34:39.061 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'springApplicationAdminRegistrar' +15:34:39.061 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'springApplicationAdminRegistrar' +15:34:39.061 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration' +15:34:39.061 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'environment' +15:34:39.061 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'springApplicationAdminRegistrar' via factory method to bean named 'environment' +15:34:39.061 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.admin.jmx-name' in PropertySource 'configurationProperties' +15:34:39.062 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.admin.jmx-name' in PropertySource 'servletConfigInitParams' +15:34:39.062 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.admin.jmx-name' in PropertySource 'servletContextInitParams' +15:34:39.062 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.admin.jmx-name' in PropertySource 'systemProperties' +15:34:39.062 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.admin.jmx-name' in PropertySource 'systemEnvironment' +15:34:39.062 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.admin.jmx-name' in PropertySource 'random' +15:34:39.062 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.application.admin.jmx-name' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:39.062 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.application.admin.jmx-name' in any property source +15:34:39.062 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mbeanExporter' +15:34:39.062 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mbeanExporter' +15:34:39.063 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'springApplicationAdminRegistrar' to allow for resolving potential circular references +15:34:39.063 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Invoking afterPropertiesSet() on bean with name 'springApplicationAdminRegistrar' +15:34:39.063 logback [main] DEBUG javax.management.mbeanserver - ObjectName = org.springframework.boot:type=Admin,name=SpringApplication +15:34:39.064 logback [main] DEBUG javax.management.mbeanserver - name = org.springframework.boot:type=Admin,name=SpringApplication +15:34:39.064 logback [main] DEBUG javax.management.mbeanserver - Send create notification of object org.springframework.boot:name=SpringApplication,type=Admin +15:34:39.064 logback [main] DEBUG javax.management.mbeanserver - JMX.mbean.registered org.springframework.boot:type=Admin,name=SpringApplication +15:34:39.064 logback [main] DEBUG o.s.b.a.SpringApplicationAdminMXBeanRegistrar$SpringApplicationAdmin - Application Admin MBean registered with name 'org.springframework.boot:type=Admin,name=SpringApplication' +15:34:39.064 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'springApplicationAdminRegistrar' +15:34:39.064 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration' +15:34:39.064 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration' +15:34:39.064 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration' via constructor to bean named 'org.springframework.beans.factory.support.DefaultListableBeanFactory@514646ef' +15:34:39.066 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration' to allow for resolving potential circular references +15:34:39.067 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration' +15:34:39.067 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' +15:34:39.067 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' +15:34:39.067 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' to allow for resolving potential circular references +15:34:39.067 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration' +15:34:39.067 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' +15:34:39.067 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' +15:34:39.067 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' to allow for resolving potential circular references +15:34:39.067 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' +15:34:39.067 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'applicationAvailability' +15:34:39.067 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'applicationAvailability' +15:34:39.067 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration' +15:34:39.068 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'applicationAvailability' to allow for resolving potential circular references +15:34:39.068 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'applicationAvailability' +15:34:39.068 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' +15:34:39.068 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' +15:34:39.068 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' to allow for resolving potential circular references +15:34:39.069 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration' +15:34:39.069 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' +15:34:39.069 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' +15:34:39.069 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' to allow for resolving potential circular references +15:34:39.069 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' +15:34:39.069 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'lifecycleProcessor' +15:34:39.069 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'lifecycleProcessor' +15:34:39.069 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration' +15:34:39.069 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' +15:34:39.069 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' +15:34:39.069 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' to allow for resolving potential circular references +15:34:39.069 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' +15:34:39.070 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' +15:34:39.070 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'lifecycleProcessor' via factory method to bean named 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' +15:34:39.071 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'lifecycleProcessor' to allow for resolving potential circular references +15:34:39.071 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'lifecycleProcessor' +15:34:39.071 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties' +15:34:39.071 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' +15:34:39.071 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' +15:34:39.071 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' to allow for resolving potential circular references +15:34:39.071 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' +15:34:39.071 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' +15:34:39.071 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'standardJacksonObjectMapperBuilderCustomizer' +15:34:39.071 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration' +15:34:39.072 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' +15:34:39.072 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' +15:34:39.072 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' to allow for resolving potential circular references +15:34:39.072 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' +15:34:39.074 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' +15:34:39.074 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@68e965f5' +15:34:39.074 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'standardJacksonObjectMapperBuilderCustomizer' via factory method to bean named 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' +15:34:39.074 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'standardJacksonObjectMapperBuilderCustomizer' to allow for resolving potential circular references +15:34:39.074 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'standardJacksonObjectMapperBuilderCustomizer' +15:34:39.074 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties' +15:34:39.074 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' +15:34:39.074 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' +15:34:39.075 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' to allow for resolving potential circular references +15:34:39.075 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' +15:34:39.075 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' +15:34:39.075 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' +15:34:39.075 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' to allow for resolving potential circular references +15:34:39.075 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' +15:34:39.075 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'parameterNamesModule' +15:34:39.075 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'parameterNamesModule' +15:34:39.075 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration' +15:34:39.077 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'parameterNamesModule' to allow for resolving potential circular references +15:34:39.077 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'parameterNamesModule' +15:34:39.077 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' +15:34:39.077 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' +15:34:39.077 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' to allow for resolving potential circular references +15:34:39.077 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' +15:34:39.077 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jacksonObjectMapper' +15:34:39.077 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'jacksonObjectMapper' +15:34:39.077 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration' +15:34:39.078 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'jacksonObjectMapperBuilder' +15:34:39.078 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration' +15:34:39.078 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'standardJacksonObjectMapperBuilderCustomizer' +15:34:39.079 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@68e965f5' +15:34:39.079 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapperBuilder' via factory method to bean named 'standardJacksonObjectMapperBuilderCustomizer' +15:34:39.079 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'parameterNamesModule' +15:34:39.080 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'jsonComponentModule' +15:34:39.080 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'jsonComponentModule' +15:34:39.080 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' +15:34:39.080 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' +15:34:39.080 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' to allow for resolving potential circular references +15:34:39.080 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' +15:34:39.081 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'jsonComponentModule' to allow for resolving potential circular references +15:34:39.081 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Invoking afterPropertiesSet() on bean with name 'jsonComponentModule' +15:34:39.082 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'jsonComponentModule' +15:34:39.083 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'jacksonObjectMapperBuilder' +15:34:39.083 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'jacksonObjectMapper' via factory method to bean named 'jacksonObjectMapperBuilder' +15:34:39.094 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'jacksonObjectMapper' to allow for resolving potential circular references +15:34:39.094 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'jacksonObjectMapper' +15:34:39.095 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration' +15:34:39.095 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'jsonComponentModule' +15:34:39.095 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' +15:34:39.095 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' +15:34:39.095 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' to allow for resolving potential circular references +15:34:39.095 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' +15:34:39.095 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'stringHttpMessageConverter' +15:34:39.095 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'stringHttpMessageConverter' +15:34:39.095 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration' +15:34:39.095 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'environment' +15:34:39.096 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'stringHttpMessageConverter' via factory method to bean named 'environment' +15:34:39.098 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'stringHttpMessageConverter' to allow for resolving potential circular references +15:34:39.098 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'stringHttpMessageConverter' +15:34:39.099 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' +15:34:39.099 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' +15:34:39.099 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' to allow for resolving potential circular references +15:34:39.099 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' +15:34:39.099 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'mappingJackson2HttpMessageConverter' +15:34:39.099 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'mappingJackson2HttpMessageConverter' +15:34:39.099 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration' +15:34:39.099 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'jacksonObjectMapper' +15:34:39.099 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'mappingJackson2HttpMessageConverter' via factory method to bean named 'jacksonObjectMapper' +15:34:39.100 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'mappingJackson2HttpMessageConverter' to allow for resolving potential circular references +15:34:39.100 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'mappingJackson2HttpMessageConverter' +15:34:39.100 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' +15:34:39.100 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' +15:34:39.100 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' to allow for resolving potential circular references +15:34:39.100 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration' +15:34:39.100 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' +15:34:39.100 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' +15:34:39.100 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' to allow for resolving potential circular references +15:34:39.101 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' +15:34:39.101 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'messageConverters' +15:34:39.101 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'messageConverters' +15:34:39.101 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration' +15:34:39.102 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'stringHttpMessageConverter' +15:34:39.102 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mappingJackson2HttpMessageConverter' +15:34:39.103 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'stringHttpMessageConverter' +15:34:39.103 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mappingJackson2HttpMessageConverter' +15:34:39.105 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'messageConverters' to allow for resolving potential circular references +15:34:39.105 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'messageConverters' +15:34:39.105 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' +15:34:39.105 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' +15:34:39.107 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' +15:34:39.107 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' +15:34:39.108 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' to allow for resolving potential circular references +15:34:39.108 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' +15:34:39.108 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' +15:34:39.108 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' via constructor to bean named 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' +15:34:39.108 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' to allow for resolving potential circular references +15:34:39.108 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration' +15:34:39.109 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties' +15:34:39.109 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' +15:34:39.109 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' +15:34:39.109 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' to allow for resolving potential circular references +15:34:39.109 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' +15:34:39.109 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'taskSchedulerBuilder' +15:34:39.109 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'taskSchedulerBuilder' +15:34:39.109 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration' +15:34:39.110 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' +15:34:39.110 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' +15:34:39.110 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' to allow for resolving potential circular references +15:34:39.110 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' +15:34:39.111 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' +15:34:39.111 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'taskSchedulerBuilder' via factory method to bean named 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' +15:34:39.111 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'taskSchedulerBuilder' to allow for resolving potential circular references +15:34:39.112 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'taskSchedulerBuilder' +15:34:39.112 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties' +15:34:39.112 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafJava8TimeDialect' +15:34:39.112 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafJava8TimeDialect' +15:34:39.112 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafJava8TimeDialect' to allow for resolving potential circular references +15:34:39.112 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafJava8TimeDialect' +15:34:39.112 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'java8TimeDialect' +15:34:39.112 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'java8TimeDialect' +15:34:39.112 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafJava8TimeDialect' +15:34:39.113 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'java8TimeDialect' to allow for resolving potential circular references +15:34:39.113 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'java8TimeDialect' +15:34:39.113 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration$ThymeleafViewResolverConfiguration' +15:34:39.113 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration$ThymeleafViewResolverConfiguration' +15:34:39.113 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration$ThymeleafViewResolverConfiguration' to allow for resolving potential circular references +15:34:39.113 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration$ThymeleafViewResolverConfiguration' +15:34:39.113 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'thymeleafViewResolver' +15:34:39.113 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'thymeleafViewResolver' +15:34:39.113 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration$ThymeleafViewResolverConfiguration' +15:34:39.114 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'spring.thymeleaf-org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties' +15:34:39.114 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'spring.thymeleaf-org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties' +15:34:39.114 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'spring.thymeleaf-org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties' to allow for resolving potential circular references +15:34:39.114 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.context.properties.BoundConfigurationProperties' +15:34:39.115 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'spring.thymeleaf-org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties' +15:34:39.116 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'templateEngine' +15:34:39.116 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'templateEngine' +15:34:39.116 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration' +15:34:39.116 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration' +15:34:39.116 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration' to allow for resolving potential circular references +15:34:39.116 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration' +15:34:39.116 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'spring.thymeleaf-org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties' +15:34:39.116 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'templateEngine' via factory method to bean named 'spring.thymeleaf-org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties' +15:34:39.122 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'defaultTemplateResolver' +15:34:39.122 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'defaultTemplateResolver' +15:34:39.122 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration' +15:34:39.122 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration' +15:34:39.124 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'spring.thymeleaf-org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties' +15:34:39.124 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration' via constructor to bean named 'spring.thymeleaf-org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties' +15:34:39.124 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration' via constructor to bean named 'org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@68e965f5' +15:34:39.124 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration' to allow for resolving potential circular references +15:34:39.124 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration' +15:34:39.126 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'defaultTemplateResolver' to allow for resolving potential circular references +15:34:39.126 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'defaultTemplateResolver' +15:34:39.126 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'defaultTemplateResolver' +15:34:39.127 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'java8TimeDialect' +15:34:39.127 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'java8TimeDialect' +15:34:39.128 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'templateEngine' to allow for resolving potential circular references +15:34:39.128 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'templateEngine' +15:34:39.128 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'thymeleafViewResolver' via factory method to bean named 'spring.thymeleaf-org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties' +15:34:39.128 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Autowiring by type from bean name 'thymeleafViewResolver' via factory method to bean named 'templateEngine' +15:34:39.131 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'thymeleafViewResolver' to allow for resolving potential circular references +15:34:39.131 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'thymeleafViewResolver' +15:34:39.131 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration' +15:34:39.131 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration' +15:34:39.132 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration' to allow for resolving potential circular references +15:34:39.132 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration' +15:34:39.132 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration' +15:34:39.132 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'templateEngine' +15:34:39.132 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration' +15:34:39.132 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'defaultTemplateResolver' +15:34:39.132 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration' +15:34:39.132 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration' +15:34:39.132 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration' to allow for resolving potential circular references +15:34:39.132 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration' +15:34:39.132 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'spring.thymeleaf-org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties' +15:34:39.132 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' +15:34:39.132 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' +15:34:39.133 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' to allow for resolving potential circular references +15:34:39.133 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration' +15:34:39.133 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration' +15:34:39.133 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'tomcatWebServerFactoryCustomizer' +15:34:39.133 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' +15:34:39.133 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' +15:34:39.133 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' to allow for resolving potential circular references +15:34:39.133 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration' +15:34:39.133 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration' +15:34:39.133 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'characterEncodingFilter' +15:34:39.133 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'localeCharsetMappingsCustomizer' +15:34:39.133 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' +15:34:39.133 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'multipartConfigElement' +15:34:39.133 logback [main] DEBUG o.s.b.f.s.DefaultListableBeanFactory - Creating shared instance of singleton bean 'multipartResolver' +15:34:39.133 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Creating instance of bean 'multipartResolver' +15:34:39.133 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration' +15:34:39.134 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Eagerly caching bean 'multipartResolver' to allow for resolving potential circular references +15:34:39.134 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Finished creating instance of bean 'multipartResolver' +15:34:39.134 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties' +15:34:39.135 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: com.dudu.Application$$EnhancerBySpringCGLIB$$24bf34a6 +15:34:39.136 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: com.dudu.config.MyWebMvcConfigurationSupport$$EnhancerBySpringCGLIB$$4c64eb6d +15:34:39.136 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: com.dudu.controller.LearnController +15:34:39.136 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: com.dudu.interceptor.MyInterceptor +15:34:39.136 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration +15:34:39.136 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration +15:34:39.136 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration +15:34:39.136 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat +15:34:39.136 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration +15:34:39.136 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration +15:34:39.136 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration +15:34:39.136 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration +15:34:39.136 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration +15:34:39.137 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration +15:34:39.137 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration +15:34:39.137 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration +15:34:39.137 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.web.servlet.error.BasicErrorController +15:34:39.137 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration +15:34:39.137 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: com.sun.jmx.mbeanserver.JmxMBeanServer +15:34:39.137 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration +15:34:39.137 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration +15:34:39.137 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.aop.AopAutoConfiguration +15:34:39.138 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration +15:34:39.138 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration +15:34:39.138 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration +15:34:39.138 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration +15:34:39.138 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration +15:34:39.138 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration +15:34:39.138 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: com.fasterxml.jackson.module.paramnames.ParameterNamesModule +15:34:39.138 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration +15:34:39.138 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: com.fasterxml.jackson.databind.ObjectMapper +15:34:39.139 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration +15:34:39.139 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration +15:34:39.139 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration +15:34:39.139 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration +15:34:39.139 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration +15:34:39.139 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration +15:34:39.139 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration +15:34:39.139 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafJava8TimeDialect +15:34:39.139 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.thymeleaf.extras.java8time.dialect.Java8TimeDialect +15:34:39.139 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration$ThymeleafViewResolverConfiguration +15:34:39.139 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.thymeleaf.spring5.view.ThymeleafViewResolver +15:34:39.140 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration +15:34:39.140 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration +15:34:39.140 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.thymeleaf.spring5.SpringTemplateEngine +15:34:39.140 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration +15:34:39.140 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.thymeleaf.spring5.templateresolver.SpringResourceTemplateResolver +15:34:39.140 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration +15:34:39.140 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration +15:34:39.140 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration +15:34:39.140 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration +15:34:39.140 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration +15:34:39.141 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration +15:34:39.141 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: javax.servlet.MultipartConfigElement +15:34:39.142 logback [main] TRACE o.s.c.e.EventListenerMethodProcessor - No @EventListener annotations found on bean class: org.apache.catalina.core.ApplicationContextFacade +15:34:39.142 logback [main] DEBUG o.s.j.e.a.AnnotationMBeanExporter - Registering beans for JMX exposure on startup +15:34:39.142 logback [main] DEBUG o.s.j.e.a.AnnotationMBeanExporter - Autodetecting user-defined JMX MBeans +15:34:39.144 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'lifecycleProcessor' +15:34:39.145 logback [main] TRACE o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - Using LifecycleProcessor [org.springframework.context.support.DefaultLifecycleProcessor@48bfb884] +15:34:39.145 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'lifecycleProcessor' +15:34:39.145 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'webServerGracefulShutdown' +15:34:39.145 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'webServerStartStop' +15:34:39.147 logback [main] DEBUG o.s.c.s.DefaultLifecycleProcessor - Starting beans in phase 2147483646 +15:34:39.147 logback [main] TRACE o.s.c.s.DefaultLifecycleProcessor - Starting bean 'webServerStartStop' of type [org.springframework.boot.web.servlet.context.WebServerStartStopLifecycle] +15:34:39.147 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [Connector[HTTP/1.1-8080]] to [STARTING_PREP] +15:34:39.147 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [Connector[HTTP/1.1-8080]] to [STARTING] +15:34:39.147 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +15:34:39.155 logback [http-nio-8080-Acceptor] DEBUG o.a.tomcat.util.threads.LimitLatch - Counting up[http-nio-8080-Acceptor] latch=0 +15:34:39.155 logback [main] DEBUG o.apache.catalina.util.LifecycleBase - Setting state for [Connector[HTTP/1.1-8080]] to [STARTED] +15:34:39.156 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port(s): 8080 (http) with context path '' +15:34:39.157 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'springApplicationAdminRegistrar' +15:34:39.158 logback [main] DEBUG o.s.c.s.DefaultLifecycleProcessor - Successfully started bean 'webServerStartStop' +15:34:39.158 logback [main] DEBUG o.s.c.s.DefaultLifecycleProcessor - Starting beans in phase 2147483647 +15:34:39.158 logback [main] TRACE o.s.c.s.DefaultLifecycleProcessor - Starting bean 'webServerGracefulShutdown' of type [org.springframework.boot.web.servlet.context.WebServerGracefulShutdownLifecycle] +15:34:39.158 logback [main] DEBUG o.s.c.s.DefaultLifecycleProcessor - Successfully started bean 'webServerGracefulShutdown' +15:34:39.158 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory' +15:34:39.158 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'mvcResourceUrlProvider' +15:34:39.159 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'springApplicationAdminRegistrar' +15:34:39.170 logback [main] DEBUG o.s.b.a.l.ConditionEvaluationReportLoggingListener - + + +============================ +CONDITIONS EVALUATION REPORT +============================ + + +Positive matches: +----------------- + + AopAutoConfiguration matched: + - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondition) + + AopAutoConfiguration.ClassProxyingConfiguration matched: + - @ConditionalOnMissingClass did not find unwanted class 'org.aspectj.weaver.Advice' (OnClassCondition) + - @ConditionalOnProperty (spring.aop.proxy-target-class=true) matched (OnPropertyCondition) + + DispatcherServletAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) + - found 'session' scope (OnWebApplicationCondition) + + DispatcherServletAutoConfiguration.DispatcherServletConfiguration matched: + - @ConditionalOnClass found required class 'javax.servlet.ServletRegistration' (OnClassCondition) + - Default DispatcherServlet did not find dispatcher servlet beans (DispatcherServletAutoConfiguration.DefaultDispatcherServletCondition) + + DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration matched: + - @ConditionalOnClass found required class 'javax.servlet.ServletRegistration' (OnClassCondition) + - DispatcherServlet Registration did not find servlet registration bean (DispatcherServletAutoConfiguration.DispatcherServletRegistrationCondition) + + DispatcherServletAutoConfiguration.DispatcherServletRegistrationConfiguration#dispatcherServletRegistration matched: + - @ConditionalOnBean (names: dispatcherServlet types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet' (OnBeanCondition) + + EmbeddedWebServerFactoryCustomizerAutoConfiguration matched: + - @ConditionalOnWebApplication (required) found 'session' scope (OnWebApplicationCondition) + + EmbeddedWebServerFactoryCustomizerAutoConfiguration.TomcatWebServerFactoryCustomizerConfiguration matched: + - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) + + ErrorMvcAutoConfiguration matched: + - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet' (OnClassCondition) + - found 'session' scope (OnWebApplicationCondition) + + ErrorMvcAutoConfiguration#basicErrorController matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorController; SearchStrategy: current) did not find any beans (OnBeanCondition) + + ErrorMvcAutoConfiguration#errorAttributes matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.error.ErrorAttributes; SearchStrategy: current) did not find any beans (OnBeanCondition) + + ErrorMvcAutoConfiguration.DefaultErrorViewResolverConfiguration#conventionErrorViewResolver matched: + - @ConditionalOnBean (types: org.springframework.web.servlet.DispatcherServlet; SearchStrategy: all) found bean 'dispatcherServlet'; @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.servlet.error.ErrorViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) + + ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration matched: + - @ConditionalOnProperty (server.error.whitelabel.enabled) matched (OnPropertyCondition) + - ErrorTemplate Missing did not find error template view (ErrorMvcAutoConfiguration.ErrorTemplateMissingCondition) + + ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#beanNameViewResolver matched: + - @ConditionalOnMissingBean (types: org.springframework.web.servlet.view.BeanNameViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) + + ErrorMvcAutoConfiguration.WhitelabelErrorViewConfiguration#defaultErrorView matched: + - @ConditionalOnMissingBean (names: error; SearchStrategy: all) did not find any beans (OnBeanCondition) + + GenericCacheConfiguration matched: + - Cache org.springframework.boot.autoconfigure.cache.GenericCacheConfiguration automatic cache type (CacheCondition) + + HttpEncodingAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.web.filter.CharacterEncodingFilter' (OnClassCondition) + - found 'session' scope (OnWebApplicationCondition) + - @ConditionalOnProperty (server.servlet.encoding.enabled) matched (OnPropertyCondition) + + HttpEncodingAutoConfiguration#characterEncodingFilter matched: + - @ConditionalOnMissingBean (types: org.springframework.web.filter.CharacterEncodingFilter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + HttpMessageConvertersAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.http.converter.HttpMessageConverter' (OnClassCondition) + - NoneNestedConditions 0 matched 1 did not; NestedCondition on HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (HttpMessageConvertersAutoConfiguration.NotReactiveWebApplicationCondition) + + HttpMessageConvertersAutoConfiguration#messageConverters matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.http.HttpMessageConverters; SearchStrategy: all) did not find any beans (OnBeanCondition) + + HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.http.converter.StringHttpMessageConverter' (OnClassCondition) + + HttpMessageConvertersAutoConfiguration.StringHttpMessageConverterConfiguration#stringHttpMessageConverter matched: + - @ConditionalOnMissingBean (types: org.springframework.http.converter.StringHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JacksonAutoConfiguration matched: + - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) + + JacksonAutoConfiguration.Jackson2ObjectMapperBuilderCustomizerConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) + + JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) + + JacksonAutoConfiguration.JacksonObjectMapperBuilderConfiguration#jacksonObjectMapperBuilder matched: + - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.Jackson2ObjectMapperBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JacksonAutoConfiguration.JacksonObjectMapperConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.http.converter.json.Jackson2ObjectMapperBuilder' (OnClassCondition) + + JacksonAutoConfiguration.JacksonObjectMapperConfiguration#jacksonObjectMapper matched: + - @ConditionalOnMissingBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JacksonAutoConfiguration.ParameterNamesModuleConfiguration matched: + - @ConditionalOnClass found required class 'com.fasterxml.jackson.module.paramnames.ParameterNamesModule' (OnClassCondition) + + JacksonAutoConfiguration.ParameterNamesModuleConfiguration#parameterNamesModule matched: + - @ConditionalOnMissingBean (types: com.fasterxml.jackson.module.paramnames.ParameterNamesModule; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration matched: + - @ConditionalOnClass found required class 'com.fasterxml.jackson.databind.ObjectMapper' (OnClassCondition) + - @ConditionalOnProperty (spring.mvc.converters.preferred-json-mapper=jackson) matched (OnPropertyCondition) + - @ConditionalOnBean (types: com.fasterxml.jackson.databind.ObjectMapper; SearchStrategy: all) found bean 'jacksonObjectMapper' (OnBeanCondition) + + JacksonHttpMessageConvertersConfiguration.MappingJackson2HttpMessageConverterConfiguration#mappingJackson2HttpMessageConverter matched: + - @ConditionalOnMissingBean (types: org.springframework.http.converter.json.MappingJackson2HttpMessageConverter ignored: org.springframework.hateoas.server.mvc.TypeConstrainedMappingJackson2HttpMessageConverter,org.springframework.data.rest.webmvc.alps.AlpsJsonHttpMessageConverter; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JmxAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.jmx.export.MBeanExporter' (OnClassCondition) + - @ConditionalOnProperty (spring.jmx.enabled=true) matched (OnPropertyCondition) + + JmxAutoConfiguration#mbeanExporter matched: + - @ConditionalOnMissingBean (types: org.springframework.jmx.export.MBeanExporter; SearchStrategy: current) did not find any beans (OnBeanCondition) + + JmxAutoConfiguration#mbeanServer matched: + - @ConditionalOnMissingBean (types: javax.management.MBeanServer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + JmxAutoConfiguration#objectNamingStrategy matched: + - @ConditionalOnMissingBean (types: org.springframework.jmx.export.naming.ObjectNamingStrategy; SearchStrategy: current) did not find any beans (OnBeanCondition) + + LifecycleAutoConfiguration#defaultLifecycleProcessor matched: + - @ConditionalOnMissingBean (names: lifecycleProcessor; SearchStrategy: current) did not find any beans (OnBeanCondition) + + MultipartAutoConfiguration matched: + - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.multipart.support.StandardServletMultipartResolver', 'javax.servlet.MultipartConfigElement' (OnClassCondition) + - found 'session' scope (OnWebApplicationCondition) + - @ConditionalOnProperty (spring.servlet.multipart.enabled) matched (OnPropertyCondition) + + MultipartAutoConfiguration#multipartConfigElement matched: + - @ConditionalOnMissingBean (types: javax.servlet.MultipartConfigElement,org.springframework.web.multipart.commons.CommonsMultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) + + MultipartAutoConfiguration#multipartResolver matched: + - @ConditionalOnMissingBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) + + NoOpCacheConfiguration matched: + - Cache org.springframework.boot.autoconfigure.cache.NoOpCacheConfiguration automatic cache type (CacheCondition) + + PropertyPlaceholderAutoConfiguration#propertySourcesPlaceholderConfigurer matched: + - @ConditionalOnMissingBean (types: org.springframework.context.support.PropertySourcesPlaceholderConfigurer; SearchStrategy: current) did not find any beans (OnBeanCondition) + + RestTemplateAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.web.client.RestTemplate' (OnClassCondition) + - NoneNestedConditions 0 matched 1 did not; NestedCondition on RestTemplateAutoConfiguration.NotReactiveWebApplicationCondition.ReactiveWebApplication did not find reactive web application classes (RestTemplateAutoConfiguration.NotReactiveWebApplicationCondition) + + RestTemplateAutoConfiguration#restTemplateBuilder matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.web.client.RestTemplateBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) + + RestTemplateAutoConfiguration#restTemplateBuilderConfigurer matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.autoconfigure.web.client.RestTemplateBuilderConfigurer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + ServletWebServerFactoryAutoConfiguration matched: + - @ConditionalOnClass found required class 'javax.servlet.ServletRequest' (OnClassCondition) + - found 'session' scope (OnWebApplicationCondition) + + ServletWebServerFactoryAutoConfiguration#tomcatServletWebServerFactoryCustomizer matched: + - @ConditionalOnClass found required class 'org.apache.catalina.startup.Tomcat' (OnClassCondition) + + ServletWebServerFactoryConfiguration.EmbeddedTomcat matched: + - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.apache.catalina.startup.Tomcat', 'org.apache.coyote.UpgradeProtocol' (OnClassCondition) + - @ConditionalOnMissingBean (types: org.springframework.boot.web.servlet.server.ServletWebServerFactory; SearchStrategy: current) did not find any beans (OnBeanCondition) + + SimpleCacheConfiguration matched: + - Cache org.springframework.boot.autoconfigure.cache.SimpleCacheConfiguration automatic cache type (CacheCondition) + + SpringApplicationAdminJmxAutoConfiguration matched: + - @ConditionalOnProperty (spring.application.admin.enabled=true) matched (OnPropertyCondition) + + SpringApplicationAdminJmxAutoConfiguration#springApplicationAdminRegistrar matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.admin.SpringApplicationAdminMXBeanRegistrar; SearchStrategy: all) did not find any beans (OnBeanCondition) + + TaskExecutionAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor' (OnClassCondition) + + TaskExecutionAutoConfiguration#applicationTaskExecutor matched: + - @ConditionalOnMissingBean (types: java.util.concurrent.Executor; SearchStrategy: all) did not find any beans (OnBeanCondition) + + TaskExecutionAutoConfiguration#taskExecutorBuilder matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskExecutorBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) + + TaskSchedulingAutoConfiguration matched: + - @ConditionalOnClass found required class 'org.springframework.scheduling.concurrent.ThreadPoolTaskScheduler' (OnClassCondition) + + TaskSchedulingAutoConfiguration#taskSchedulerBuilder matched: + - @ConditionalOnMissingBean (types: org.springframework.boot.task.TaskSchedulerBuilder; SearchStrategy: all) did not find any beans (OnBeanCondition) + + ThymeleafAutoConfiguration matched: + - @ConditionalOnClass found required classes 'org.thymeleaf.templatemode.TemplateMode', 'org.thymeleaf.spring5.SpringTemplateEngine' (OnClassCondition) + + ThymeleafAutoConfiguration.DefaultTemplateResolverConfiguration matched: + - @ConditionalOnMissingBean (names: defaultTemplateResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) + + ThymeleafAutoConfiguration.ThymeleafDefaultConfiguration#templateEngine matched: + - @ConditionalOnMissingBean (types: org.thymeleaf.spring5.ISpringTemplateEngine; SearchStrategy: all) did not find any beans (OnBeanCondition) + + ThymeleafAutoConfiguration.ThymeleafJava8TimeDialect matched: + - @ConditionalOnClass found required class 'org.thymeleaf.extras.java8time.dialect.Java8TimeDialect' (OnClassCondition) + + ThymeleafAutoConfiguration.ThymeleafJava8TimeDialect#java8TimeDialect matched: + - @ConditionalOnMissingBean (types: org.thymeleaf.extras.java8time.dialect.Java8TimeDialect; SearchStrategy: all) did not find any beans (OnBeanCondition) + + ThymeleafAutoConfiguration.ThymeleafWebMvcConfiguration matched: + - found 'session' scope (OnWebApplicationCondition) + - @ConditionalOnProperty (spring.thymeleaf.enabled) matched (OnPropertyCondition) + + ThymeleafAutoConfiguration.ThymeleafWebMvcConfiguration.ThymeleafViewResolverConfiguration#thymeleafViewResolver matched: + - @ConditionalOnMissingBean (names: thymeleafViewResolver; SearchStrategy: all) did not find any beans (OnBeanCondition) + + WebSocketServletAutoConfiguration matched: + - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'javax.websocket.server.ServerContainer' (OnClassCondition) + - found 'session' scope (OnWebApplicationCondition) + + WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration matched: + - @ConditionalOnClass found required classes 'org.apache.catalina.startup.Tomcat', 'org.apache.tomcat.websocket.server.WsSci' (OnClassCondition) + + WebSocketServletAutoConfiguration.TomcatWebSocketConfiguration#websocketServletWebServerCustomizer matched: + - @ConditionalOnMissingBean (names: websocketServletWebServerCustomizer; SearchStrategy: all) did not find any beans (OnBeanCondition) + + +Negative matches: +----------------- + + ActiveMQAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'javax.jms.ConnectionFactory' (OnClassCondition) + + AopAutoConfiguration.AspectJAutoProxyingConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.aspectj.weaver.Advice' (OnClassCondition) + + ArtemisAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'javax.jms.ConnectionFactory' (OnClassCondition) + + BatchAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.batch.core.launch.JobLauncher' (OnClassCondition) + + CacheAutoConfiguration: + Did not match: + - @ConditionalOnBean (types: org.springframework.cache.interceptor.CacheAspectSupport; SearchStrategy: all) did not find any beans of type org.springframework.cache.interceptor.CacheAspectSupport (OnBeanCondition) + Matched: + - @ConditionalOnClass found required class 'org.springframework.cache.CacheManager' (OnClassCondition) + + CacheAutoConfiguration.CacheManagerEntityManagerFactoryDependsOnPostProcessor: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean' (OnClassCondition) + - Ancestor org.springframework.boot.autoconfigure.cache.CacheAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) + + CaffeineCacheConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.github.benmanes.caffeine.cache.Caffeine' (OnClassCondition) + + CassandraAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) + + CassandraDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) + + CassandraReactiveDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) + + CassandraReactiveRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.cassandra.ReactiveSession' (OnClassCondition) + + CassandraRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.datastax.oss.driver.api.core.CqlSession' (OnClassCondition) + + ClientHttpConnectorAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) + + CodecsAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) + + CouchbaseAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) + + CouchbaseCacheConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) + + CouchbaseDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) + + CouchbaseReactiveDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) + + CouchbaseReactiveRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Cluster' (OnClassCondition) + + CouchbaseRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.couchbase.client.java.Bucket' (OnClassCondition) + + DataSourceAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) + + DataSourceTransactionManagerAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) + + DispatcherServletAutoConfiguration.DispatcherServletConfiguration#multipartResolver: + Did not match: + - @ConditionalOnBean (types: org.springframework.web.multipart.MultipartResolver; SearchStrategy: all) did not find any beans of type org.springframework.web.multipart.MultipartResolver (OnBeanCondition) + + EhCacheCacheConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'net.sf.ehcache.Cache' (OnClassCondition) + + ElasticsearchDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.core.ElasticsearchRestTemplate' (OnClassCondition) + + ElasticsearchRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.elasticsearch.client.Client' (OnClassCondition) + + ElasticsearchRestClientAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.elasticsearch.client.RestHighLevelClient' (OnClassCondition) + + EmbeddedLdapAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.unboundid.ldap.listener.InMemoryDirectoryServer' (OnClassCondition) + + EmbeddedMongoAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.mongodb.MongoClientSettings' (OnClassCondition) + + EmbeddedWebServerFactoryCustomizerAutoConfiguration.JettyWebServerFactoryCustomizerConfiguration: + Did not match: + - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.webapp.WebAppContext' (OnClassCondition) + + EmbeddedWebServerFactoryCustomizerAutoConfiguration.NettyWebServerFactoryCustomizerConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'reactor.netty.http.server.HttpServer' (OnClassCondition) + + EmbeddedWebServerFactoryCustomizerAutoConfiguration.UndertowWebServerFactoryCustomizerConfiguration: + Did not match: + - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) + + ErrorWebFluxAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) + + FlywayAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.flywaydb.core.Flyway' (OnClassCondition) + + FreeMarkerAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'freemarker.template.Configuration' (OnClassCondition) + + GroovyTemplateAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'groovy.text.markup.MarkupTemplateEngine' (OnClassCondition) + + GsonAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) + + GsonHttpMessageConvertersConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.google.gson.Gson' (OnClassCondition) + + H2ConsoleAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.h2.server.web.WebServlet' (OnClassCondition) + + HazelcastAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) + + HazelcastCacheConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) + + HazelcastJpaDependencyAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.hazelcast.core.HazelcastInstance' (OnClassCondition) + + HibernateJpaAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'javax.persistence.EntityManager' (OnClassCondition) + + HttpHandlerAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.DispatcherHandler' (OnClassCondition) + + HypermediaAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.hateoas.EntityModel' (OnClassCondition) + + InfinispanCacheConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.infinispan.spring.embedded.provider.SpringEmbeddedCacheManager' (OnClassCondition) + + InfluxDbAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.influxdb.InfluxDB' (OnClassCondition) + + IntegrationAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.integration.config.EnableIntegration' (OnClassCondition) + + JCacheCacheConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'javax.cache.Caching' (OnClassCondition) + + JacksonHttpMessageConvertersConfiguration.MappingJackson2XmlHttpMessageConverterConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.fasterxml.jackson.dataformat.xml.XmlMapper' (OnClassCondition) + + JdbcRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.jdbc.repository.config.AbstractJdbcConfiguration' (OnClassCondition) + + JdbcTemplateAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.jdbc.core.JdbcTemplate' (OnClassCondition) + + JerseyAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.glassfish.jersey.server.spring.SpringComponentProvider' (OnClassCondition) + + JmsAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'javax.jms.Message' (OnClassCondition) + + JndiConnectionFactoryAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.jms.core.JmsTemplate' (OnClassCondition) + + JndiDataSourceAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseType' (OnClassCondition) + + JooqAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.jooq.DSLContext' (OnClassCondition) + + JpaRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.jpa.repository.JpaRepository' (OnClassCondition) + + JsonbAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'javax.json.bind.Jsonb' (OnClassCondition) + + JsonbHttpMessageConvertersConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'javax.json.bind.Jsonb' (OnClassCondition) + + JtaAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'javax.transaction.Transaction' (OnClassCondition) + + KafkaAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.kafka.core.KafkaTemplate' (OnClassCondition) + + LdapAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.ldap.core.ContextSource' (OnClassCondition) + + LdapRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.ldap.repository.LdapRepository' (OnClassCondition) + + LiquibaseAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'liquibase.change.DatabaseChange' (OnClassCondition) + + MailSenderAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'javax.mail.internet.MimeMessage' (OnClassCondition) + + MailSenderValidatorAutoConfiguration: + Did not match: + - @ConditionalOnSingleCandidate did not find required type 'org.springframework.mail.javamail.JavaMailSenderImpl' (OnBeanCondition) + + MessageSourceAutoConfiguration: + Did not match: + - ResourceBundle did not find bundle with basename messages (MessageSourceAutoConfiguration.ResourceBundleCondition) + + MongoAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) + + MongoDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) + + MongoReactiveAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) + + MongoReactiveDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) + + MongoReactiveRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.mongodb.reactivestreams.client.MongoClient' (OnClassCondition) + + MongoRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.mongodb.client.MongoClient' (OnClassCondition) + + MustacheAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.samskivert.mustache.Mustache' (OnClassCondition) + + Neo4jAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) + + Neo4jDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) + + Neo4jReactiveDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) + + Neo4jReactiveRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) + + Neo4jRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.neo4j.driver.Driver' (OnClassCondition) + + OAuth2ClientAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.configuration.EnableWebSecurity' (OnClassCondition) + + OAuth2ResourceServerAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.oauth2.server.resource.BearerTokenAuthenticationToken' (OnClassCondition) + + PersistenceExceptionTranslationAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor' (OnClassCondition) + + ProjectInfoAutoConfiguration#buildProperties: + Did not match: + - @ConditionalOnResource did not find resource '${spring.info.build.location:classpath:META-INF/build-info.properties}' (OnResourceCondition) + + ProjectInfoAutoConfiguration#gitProperties: + Did not match: + - GitResource did not find git info at classpath:git.properties (ProjectInfoAutoConfiguration.GitResourceAvailableCondition) + + QuartzAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.quartz.Scheduler' (OnClassCondition) + + R2dbcAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) + + R2dbcDataAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.r2dbc.core.R2dbcEntityTemplate' (OnClassCondition) + + R2dbcRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'io.r2dbc.spi.ConnectionFactory' (OnClassCondition) + + R2dbcTransactionManagerAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.r2dbc.connection.R2dbcTransactionManager' (OnClassCondition) + + RSocketMessagingAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) + + RSocketRequesterAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'io.rsocket.RSocket' (OnClassCondition) + + RSocketSecurityAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.rsocket.core.SecuritySocketAcceptorInterceptor' (OnClassCondition) + + RSocketServerAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'io.rsocket.core.RSocketServer' (OnClassCondition) + + RSocketStrategiesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'io.netty.buffer.PooledByteBufAllocator' (OnClassCondition) + + RabbitAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.rabbitmq.client.Channel' (OnClassCondition) + + ReactiveElasticsearchRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.elasticsearch.client.reactive.ReactiveElasticsearchClient' (OnClassCondition) + + ReactiveElasticsearchRestClientAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'reactor.netty.http.client.HttpClient' (OnClassCondition) + + ReactiveOAuth2ClientAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) + + ReactiveOAuth2ResourceServerAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.config.annotation.web.reactive.EnableWebFluxSecurity' (OnClassCondition) + + ReactiveSecurityAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) + + ReactiveUserDetailsServiceAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.ReactiveAuthenticationManager' (OnClassCondition) + + ReactiveWebServerFactoryAutoConfiguration: + Did not match: + - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) + + RedisAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.redis.core.RedisOperations' (OnClassCondition) + + RedisCacheConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.redis.connection.RedisConnectionFactory' (OnClassCondition) + + RedisReactiveAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'reactor.core.publisher.Flux' (OnClassCondition) + + RedisRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.redis.repository.configuration.EnableRedisRepositories' (OnClassCondition) + + RepositoryRestMvcAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration' (OnClassCondition) + + Saml2RelyingPartyAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.saml2.provider.service.registration.RelyingPartyRegistrationRepository' (OnClassCondition) + + SecurityAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.DefaultAuthenticationEventPublisher' (OnClassCondition) + + SecurityFilterAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.config.http.SessionCreationPolicy' (OnClassCondition) + + SendGridAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.sendgrid.SendGrid' (OnClassCondition) + + ServletWebServerFactoryAutoConfiguration#forwardedHeaderFilter: + Did not match: + - @ConditionalOnProperty (server.forward-headers-strategy=framework) did not find property 'server.forward-headers-strategy' (OnPropertyCondition) + + ServletWebServerFactoryConfiguration.EmbeddedJetty: + Did not match: + - @ConditionalOnClass did not find required classes 'org.eclipse.jetty.server.Server', 'org.eclipse.jetty.util.Loader', 'org.eclipse.jetty.webapp.WebAppContext' (OnClassCondition) + + ServletWebServerFactoryConfiguration.EmbeddedUndertow: + Did not match: + - @ConditionalOnClass did not find required classes 'io.undertow.Undertow', 'org.xnio.SslClientAuthMode' (OnClassCondition) + + SessionAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.session.Session' (OnClassCondition) + + SolrAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.apache.solr.client.solrj.impl.CloudSolrClient' (OnClassCondition) + + SolrRepositoriesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.apache.solr.client.solrj.SolrClient' (OnClassCondition) + + SpringDataWebAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.data.web.PageableHandlerMethodArgumentResolver' (OnClassCondition) + + TaskSchedulingAutoConfiguration#taskScheduler: + Did not match: + - @ConditionalOnBean (names: org.springframework.context.annotation.internalScheduledAnnotationProcessor; SearchStrategy: all) did not find any beans named org.springframework.context.annotation.internalScheduledAnnotationProcessor (OnBeanCondition) + + ThymeleafAutoConfiguration.DataAttributeDialectConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'com.github.mxab.thymeleaf.extras.dataattribute.dialect.DataAttributeDialect' (OnClassCondition) + + ThymeleafAutoConfiguration.ThymeleafReactiveConfiguration: + Did not match: + - did not find reactive web application classes (OnWebApplicationCondition) + + ThymeleafAutoConfiguration.ThymeleafSecurityDialectConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.thymeleaf.extras.springsecurity5.dialect.SpringSecurityDialect' (OnClassCondition) + + ThymeleafAutoConfiguration.ThymeleafWebFluxConfiguration: + Did not match: + - did not find reactive web application classes (OnWebApplicationCondition) + + ThymeleafAutoConfiguration.ThymeleafWebLayoutConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'nz.net.ultraq.thymeleaf.LayoutDialect' (OnClassCondition) + + ThymeleafAutoConfiguration.ThymeleafWebMvcConfiguration#resourceUrlEncodingFilter: + Did not match: + - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) + + TransactionAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.transaction.PlatformTransactionManager' (OnClassCondition) + + UserDetailsServiceAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.security.authentication.AuthenticationManager' (OnClassCondition) + + ValidationAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'javax.validation.executable.ExecutableValidator' (OnClassCondition) + + WebClientAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.function.client.WebClient' (OnClassCondition) + + WebFluxAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.web.reactive.config.WebFluxConfigurer' (OnClassCondition) + + WebMvcAutoConfiguration: + Did not match: + - @ConditionalOnMissingBean (types: org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; SearchStrategy: all) found beans of type 'org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport' myWebMvcConfigurationSupport (OnBeanCondition) + Matched: + - @ConditionalOnClass found required classes 'javax.servlet.Servlet', 'org.springframework.web.servlet.DispatcherServlet', 'org.springframework.web.servlet.config.annotation.WebMvcConfigurer' (OnClassCondition) + - found 'session' scope (OnWebApplicationCondition) + + WebMvcAutoConfiguration.ResourceChainCustomizerConfiguration: + Did not match: + - @ConditionalOnEnabledResourceChain did not find class org.webjars.WebJarAssetLocator (OnEnabledResourceChainCondition) + - Ancestor org.springframework.boot.autoconfigure.web.servlet.WebMvcAutoConfiguration did not match (ConditionEvaluationReport.AncestorsMatchedCondition) + + WebServiceTemplateAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.oxm.Marshaller' (OnClassCondition) + + WebServicesAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.ws.transport.http.MessageDispatcherServlet' (OnClassCondition) + + WebSocketMessagingAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.springframework.web.socket.config.annotation.WebSocketMessageBrokerConfigurer' (OnClassCondition) + + WebSocketReactiveAutoConfiguration: + Did not match: + - @ConditionalOnWebApplication did not find reactive web application classes (OnWebApplicationCondition) + + WebSocketServletAutoConfiguration.JettyWebSocketConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'org.eclipse.jetty.websocket.jsr356.server.deploy.WebSocketServerContainerInitializer' (OnClassCondition) + + WebSocketServletAutoConfiguration.UndertowWebSocketConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'io.undertow.websockets.jsr.Bootstrap' (OnClassCondition) + + XADataSourceAutoConfiguration: + Did not match: + - @ConditionalOnClass did not find required class 'javax.transaction.TransactionManager' (OnClassCondition) + + +Exclusions: +----------- + + None + + +Unconditional classes: +---------------------- + + org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration + + org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration + + org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration + + org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration + + org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration + + + +15:34:39.171 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'viewControllerHandlerMapping' +15:34:39.171 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'resourceHandlerMapping' +15:34:39.172 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.liveBeansView.mbeanDomain' in PropertySource 'server.ports' +15:34:39.172 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.liveBeansView.mbeanDomain' in PropertySource 'configurationProperties' +15:34:39.172 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.liveBeansView.mbeanDomain' in PropertySource 'servletConfigInitParams' +15:34:39.172 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.liveBeansView.mbeanDomain' in PropertySource 'servletContextInitParams' +15:34:39.172 logback [main] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.liveBeansView.mbeanDomain' in PropertySource 'systemProperties' +15:34:39.172 logback [main] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'spring.liveBeansView.mbeanDomain' in PropertySource 'systemProperties' with value of type String +15:34:39.173 logback [main] DEBUG javax.management.mbeanserver - ObjectName = DefaultDomain:application= +15:34:39.173 logback [main] DEBUG javax.management.mbeanserver - name = DefaultDomain:application= +15:34:39.173 logback [main] DEBUG javax.management.mbeanserver - Send create notification of object DefaultDomain:application= +15:34:39.173 logback [main] DEBUG javax.management.mbeanserver - JMX.mbean.registered DefaultDomain:application= +15:34:39.174 logback [main] INFO com.dudu.Application - Started Application in 1.384 seconds (JVM running for 1.682) +15:34:39.175 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'springApplicationAdminRegistrar' +15:34:39.175 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'springApplicationAdminRegistrar' +15:34:39.175 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'applicationAvailability' +15:34:39.176 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'springApplicationAdminRegistrar' +15:34:39.176 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'springApplicationAdminRegistrar' +15:34:39.176 logback [main] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'applicationAvailability' +15:34:39.192 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) op = 82 +15:34:39.193 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) op = 80 +15:34:39.193 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting input stream +15:34:39.193 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: call dispatcher +15:34:39.193 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIJRMPServerImpl$ExportedWrapper[752891fb:176466c655b:-7fff, 1557992869461085535]: public abstract javax.management.remote.rmi.RMIConnection javax.management.remote.rmi.RMIServer.newClient(java.lang.Object) throws java.io.IOException] +15:34:39.193 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - making new client +15:34:39.193 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - no subject +15:34:39.193 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://127.0.0.1 2 +15:34:39.193 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - making new connection: rmi://127.0.0.1 2 +15:34:39.193 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.misc - Creates a new ServerCommunicatorAdmin object with the timeout 120000 +15:34:39.194 logback [JMX server connection timeout 37] DEBUG javax.management.remote.timeout - Admin: timeout=120000 +15:34:39.194 logback [JMX server connection timeout 37] DEBUG javax.management.remote.timeout - Admin: Timestamp=1607499279194 +15:34:39.194 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(1)-127.0.0.1: strongRef = javax.management.remote.rmi.RMIConnectionImpl@a9f6dfd: connectionId=rmi://127.0.0.1 2 +15:34:39.194 logback [JMX server connection timeout 37] DEBUG javax.management.remote.timeout - Admin: remaining timeout=120000 +15:34:39.194 logback [JMX server connection timeout 37] DEBUG javax.management.remote.misc - Waiting with timeout: 120000 ms remaining +15:34:39.194 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(1)-127.0.0.1: add object [752891fb:176466c655b:-7ff7, -1066429984179981202] +15:34:39.194 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - new connection done: rmi://127.0.0.1 2 +15:34:39.194 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting output stream +15:34:39.194 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) op = 80 +15:34:39.194 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting input stream +15:34:39.194 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: call dispatcher +15:34:39.194 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1: sun.rmi.transport.DGCImpl[0:0:0, 2]: java.rmi.dgc.Lease dirty(java.rmi.server.ObjID[], long, java.rmi.dgc.Lease)] +15:34:39.194 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.195 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "[Ljava.rmi.server.ObjID;" found via defaultLoader, defined by null +15:34:39.195 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [Ljava.rmi.server.ObjID;, array length: -1, nRefs: 2, depth: 1, bytes: 80, ex: n/a +15:34:39.195 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [Ljava.rmi.server.ObjID;, array length: 1, nRefs: 3, depth: 1, bytes: 86, ex: n/a +15:34:39.195 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.195 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "java.rmi.server.ObjID" found via defaultLoader, defined by null +15:34:39.195 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.server.ObjID, array length: -1, nRefs: 5, depth: 2, bytes: 164, ex: n/a +15:34:39.195 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.195 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "java.rmi.server.UID" found via defaultLoader, defined by null +15:34:39.195 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.server.UID, array length: -1, nRefs: 8, depth: 3, bytes: 233, ex: n/a +15:34:39.195 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.195 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "java.rmi.dgc.Lease" found via defaultLoader, defined by null +15:34:39.196 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.dgc.Lease, array length: -1, nRefs: 11, depth: 1, bytes: 330, ex: n/a +15:34:39.196 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 13, depth: 2, bytes: 395, ex: n/a +15:34:39.196 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.196 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "java.rmi.dgc.VMID" found via defaultLoader, defined by null +15:34:39.196 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.dgc.VMID, array length: -1, nRefs: 14, depth: 2, bytes: 396, ex: n/a +15:34:39.196 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "[B", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.196 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "[B" found via defaultLoader, defined by null +15:34:39.196 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [B, array length: -1, nRefs: 17, depth: 3, bytes: 416, ex: n/a +15:34:39.196 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [B, array length: 8, nRefs: 18, depth: 3, bytes: 422, ex: n/a +15:34:39.196 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 19, depth: 3, bytes: 436, ex: n/a +15:34:39.196 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(1)-127.0.0.1: vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe +15:34:39.196 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(1)-127.0.0.1: id = [752891fb:176466c655b:-7ff7, -1066429984179981202], vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe, duration = 600000 +15:34:39.196 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(1)-127.0.0.1: add to dirty set: ccee31b1defcc993:1474188a:175f2f486b7:-7ffe +15:34:39.196 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting output stream +15:34:39.197 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) op = 84 +15:34:39.197 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) op = 80 +15:34:39.197 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting input stream +15:34:39.197 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: call dispatcher +15:34:39.197 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7ff7, -1066429984179981202]: public abstract java.lang.String javax.management.remote.rmi.RMIConnection.getConnectionId() throws java.io.IOException] +15:34:39.197 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting output stream +15:34:39.197 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) op = 80 +15:34:39.198 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting input stream +15:34:39.198 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: call dispatcher +15:34:39.198 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7ff7, -1066429984179981202]: public abstract java.lang.Object javax.management.remote.rmi.RMIConnection.getAttribute(javax.management.ObjectName,java.lang.String,javax.security.auth.Subject) throws javax.management.MBeanException,javax.management.AttributeNotFoundException,javax.management.InstanceNotFoundException,javax.management.ReflectionException,java.io.IOException] +15:34:39.198 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" +15:34:39.198 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.198 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(1)-127.0.0.1: class "javax.management.ObjectName" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.198 logback [RMI TCP Connection(1)-127.0.0.1] TRACE javax.management.remote.rmi - connectionId=rmi://127.0.0.1 2, name=org.springframework.boot:type=Admin,name=SpringApplication, attribute=Ready +15:34:39.198 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.misc - Receive a new request. +15:34:39.198 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.mbeanserver - Attribute = Ready, ObjectName = org.springframework.boot:type=Admin,name=SpringApplication +15:34:39.198 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.mbeanserver - name = org.springframework.boot:type=Admin,name=SpringApplication +15:34:39.199 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.misc - Finish a request. +15:34:39.199 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.timeout - Admin: Timestamp=1607499279199 +15:34:39.199 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting output stream +15:34:39.199 logback [JMX server connection timeout 37] DEBUG javax.management.remote.timeout - Admin: elapsed=0 +15:34:39.199 logback [JMX server connection timeout 37] DEBUG javax.management.remote.timeout - Admin: remaining timeout=120000 +15:34:39.200 logback [JMX server connection timeout 37] DEBUG javax.management.remote.misc - Waiting with timeout: 120000 ms remaining +15:34:39.200 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) op = 80 +15:34:39.200 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting input stream +15:34:39.200 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: call dispatcher +15:34:39.200 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(1)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7ff7, -1066429984179981202]: public abstract void javax.management.remote.rmi.RMIConnection.close() throws java.io.IOException] +15:34:39.200 logback [RMI TCP Connection(1)-127.0.0.1] TRACE javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@a9f6dfd: connectionId=rmi://127.0.0.1 2] closing. +15:34:39.200 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.misc - terminate the ServerCommunicatorAdmin object. +15:34:39.200 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - client=javax.management.remote.rmi.RMIConnectionImpl@a9f6dfd: connectionId=rmi://127.0.0.1 2 +15:34:39.200 logback [JMX server connection timeout 37] DEBUG javax.management.remote.timeout - Admin: elapsed=1 +15:34:39.200 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - closing client. +15:34:39.200 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(1)-127.0.0.1: remove object [752891fb:176466c655b:-7ff7, -1066429984179981202] +15:34:39.207 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - sending notif +15:34:39.207 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: accepted socket from [127.0.0.1:35260] +15:34:39.207 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-127.0.0.1: accepted socket from [127.0.0.1:35262] +15:34:39.207 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG javax.management.remote.rmi - done +15:34:39.207 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) suggesting 127.0.0.1:35260 +15:34:39.208 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-127.0.0.1: (port 43533) suggesting 127.0.0.1:35262 +15:34:39.208 logback [RMI TCP Connection(1)-127.0.0.1] TRACE javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@a9f6dfd: connectionId=rmi://127.0.0.1 2] closed. +15:34:39.208 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) client using 127.0.0.1:45907 +15:34:39.208 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-127.0.0.1: (port 43533) client using 127.0.0.1:45907 +15:34:39.208 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) op = 80 +15:34:39.208 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(1)-127.0.0.1: getting output stream +15:34:39.208 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-127.0.0.1: (port 43533) op = 80 +15:34:39.208 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting input stream +15:34:39.208 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: getting input stream +15:34:39.208 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: call dispatcher +15:34:39.208 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: call dispatcher +15:34:39.208 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(2)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIJRMPServerImpl$ExportedWrapper[752891fb:176466c655b:-7fff, 1557992869461085535]: public abstract javax.management.remote.rmi.RMIConnection javax.management.remote.rmi.RMIServer.newClient(java.lang.Object) throws java.io.IOException] +15:34:39.208 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(3)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIJRMPServerImpl$ExportedWrapper[752891fb:176466c655b:-7fff, 1557992869461085535]: public abstract javax.management.remote.rmi.RMIConnection javax.management.remote.rmi.RMIServer.newClient(java.lang.Object) throws java.io.IOException] +15:34:39.208 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - making new client +15:34:39.208 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.rmi - making new client +15:34:39.208 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - no subject +15:34:39.208 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.rmi - no subject +15:34:39.208 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://127.0.0.1 3 +15:34:39.209 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - making new connection: rmi://127.0.0.1 3 +15:34:39.209 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://127.0.0.1 4 +15:34:39.209 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.rmi - making new connection: rmi://127.0.0.1 4 +15:34:39.209 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.misc - Creates a new ServerCommunicatorAdmin object with the timeout 120000 +15:34:39.209 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.misc - Creates a new ServerCommunicatorAdmin object with the timeout 120000 +15:34:39.209 logback [JMX server connection timeout 40] DEBUG javax.management.remote.timeout - Admin: timeout=120000 +15:34:39.209 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(2)-127.0.0.1: strongRef = javax.management.remote.rmi.RMIConnectionImpl@2893ba3b: connectionId=rmi://127.0.0.1 3 +15:34:39.209 logback [JMX server connection timeout 40] DEBUG javax.management.remote.timeout - Admin: Timestamp=1607499279209 +15:34:39.209 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(2)-127.0.0.1: add object [752891fb:176466c655b:-7ff1, -6459606311908840427] +15:34:39.209 logback [JMX server connection timeout 41] DEBUG javax.management.remote.timeout - Admin: timeout=120000 +15:34:39.209 logback [JMX server connection timeout 40] DEBUG javax.management.remote.timeout - Admin: remaining timeout=120000 +15:34:39.209 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(3)-127.0.0.1: strongRef = javax.management.remote.rmi.RMIConnectionImpl@16985db3: connectionId=rmi://127.0.0.1 4 +15:34:39.209 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - new connection done: rmi://127.0.0.1 3 +15:34:39.209 logback [JMX server connection timeout 41] DEBUG javax.management.remote.timeout - Admin: Timestamp=1607499279209 +15:34:39.209 logback [JMX server connection timeout 40] DEBUG javax.management.remote.misc - Waiting with timeout: 120000 ms remaining +15:34:39.209 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(3)-127.0.0.1: add object [752891fb:176466c655b:-7ff0, -4232405651922669056] +15:34:39.209 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting output stream +15:34:39.209 logback [JMX server connection timeout 41] DEBUG javax.management.remote.timeout - Admin: remaining timeout=120000 +15:34:39.209 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.rmi - new connection done: rmi://127.0.0.1 4 +15:34:39.209 logback [JMX server connection timeout 41] DEBUG javax.management.remote.misc - Waiting with timeout: 120000 ms remaining +15:34:39.209 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: getting output stream +15:34:39.210 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) op = 80 +15:34:39.210 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting input stream +15:34:39.210 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-127.0.0.1: (port 43533) op = 80 +15:34:39.210 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: call dispatcher +15:34:39.210 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: getting input stream +15:34:39.210 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(2)-127.0.0.1: [127.0.0.1: sun.rmi.transport.DGCImpl[0:0:0, 2]: java.rmi.dgc.Lease dirty(java.rmi.server.ObjID[], long, java.rmi.dgc.Lease)] +15:34:39.210 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: call dispatcher +15:34:39.210 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(3)-127.0.0.1: [127.0.0.1: sun.rmi.transport.DGCImpl[0:0:0, 2]: java.rmi.dgc.Lease dirty(java.rmi.server.ObjID[], long, java.rmi.dgc.Lease)] +15:34:39.210 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.210 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: class "[Ljava.rmi.server.ObjID;" found via defaultLoader, defined by null +15:34:39.210 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [Ljava.rmi.server.ObjID;, array length: -1, nRefs: 2, depth: 1, bytes: 80, ex: n/a +15:34:39.210 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.210 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [Ljava.rmi.server.ObjID;, array length: 1, nRefs: 3, depth: 1, bytes: 86, ex: n/a +15:34:39.210 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[Ljava.rmi.server.ObjID;" found via defaultLoader, defined by null +15:34:39.210 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [Ljava.rmi.server.ObjID;, array length: -1, nRefs: 2, depth: 1, bytes: 80, ex: n/a +15:34:39.210 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.211 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [Ljava.rmi.server.ObjID;, array length: 1, nRefs: 3, depth: 1, bytes: 86, ex: n/a +15:34:39.211 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: class "java.rmi.server.ObjID" found via defaultLoader, defined by null +15:34:39.211 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.server.ObjID, array length: -1, nRefs: 5, depth: 2, bytes: 164, ex: n/a +15:34:39.211 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.211 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.211 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "java.rmi.server.ObjID" found via defaultLoader, defined by null +15:34:39.211 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: class "java.rmi.server.UID" found via defaultLoader, defined by null +15:34:39.211 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.server.ObjID, array length: -1, nRefs: 5, depth: 2, bytes: 164, ex: n/a +15:34:39.211 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.server.UID, array length: -1, nRefs: 8, depth: 3, bytes: 233, ex: n/a +15:34:39.211 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.211 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.211 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "java.rmi.server.UID" found via defaultLoader, defined by null +15:34:39.211 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: class "java.rmi.dgc.Lease" found via defaultLoader, defined by null +15:34:39.211 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.server.UID, array length: -1, nRefs: 8, depth: 3, bytes: 233, ex: n/a +15:34:39.211 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.dgc.Lease, array length: -1, nRefs: 11, depth: 1, bytes: 330, ex: n/a +15:34:39.211 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 13, depth: 2, bytes: 395, ex: n/a +15:34:39.211 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.211 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.211 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "java.rmi.dgc.Lease" found via defaultLoader, defined by null +15:34:39.211 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: class "java.rmi.dgc.VMID" found via defaultLoader, defined by null +15:34:39.211 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.dgc.Lease, array length: -1, nRefs: 11, depth: 1, bytes: 330, ex: n/a +15:34:39.211 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.dgc.VMID, array length: -1, nRefs: 14, depth: 2, bytes: 396, ex: n/a +15:34:39.211 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 13, depth: 2, bytes: 395, ex: n/a +15:34:39.211 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: name = "[B", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.211 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.211 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: class "[B" found via defaultLoader, defined by null +15:34:39.212 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "java.rmi.dgc.VMID" found via defaultLoader, defined by null +15:34:39.212 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [B, array length: -1, nRefs: 17, depth: 3, bytes: 416, ex: n/a +15:34:39.212 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.dgc.VMID, array length: -1, nRefs: 14, depth: 2, bytes: 396, ex: n/a +15:34:39.212 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [B, array length: 8, nRefs: 18, depth: 3, bytes: 422, ex: n/a +15:34:39.212 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 19, depth: 3, bytes: 436, ex: n/a +15:34:39.212 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.212 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(3)-127.0.0.1: vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe +15:34:39.212 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[B" found via defaultLoader, defined by null +15:34:39.212 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(3)-127.0.0.1: id = [752891fb:176466c655b:-7ff0, -4232405651922669056], vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe, duration = 600000 +15:34:39.212 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [B, array length: -1, nRefs: 17, depth: 3, bytes: 416, ex: n/a +15:34:39.212 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(3)-127.0.0.1: add to dirty set: ccee31b1defcc993:1474188a:175f2f486b7:-7ffe +15:34:39.212 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [B, array length: 8, nRefs: 18, depth: 3, bytes: 422, ex: n/a +15:34:39.212 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: getting output stream +15:34:39.212 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 19, depth: 3, bytes: 436, ex: n/a +15:34:39.212 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(2)-127.0.0.1: vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe +15:34:39.212 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(2)-127.0.0.1: id = [752891fb:176466c655b:-7ff1, -6459606311908840427], vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe, duration = 600000 +15:34:39.212 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(2)-127.0.0.1: add to dirty set: ccee31b1defcc993:1474188a:175f2f486b7:-7ffe +15:34:39.212 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-127.0.0.1: (port 43533) op = 84 +15:34:39.212 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting output stream +15:34:39.212 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) op = 84 +15:34:39.213 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-127.0.0.1: (port 43533) op = 80 +15:34:39.213 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) op = 80 +15:34:39.213 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: getting input stream +15:34:39.213 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting input stream +15:34:39.214 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: call dispatcher +15:34:39.214 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: call dispatcher +15:34:39.214 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(3)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7ff1, -6459606311908840427]: public abstract java.lang.String javax.management.remote.rmi.RMIConnection.getConnectionId() throws java.io.IOException] +15:34:39.214 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(2)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7ff0, -4232405651922669056]: public abstract java.lang.String javax.management.remote.rmi.RMIConnection.getConnectionId() throws java.io.IOException] +15:34:39.214 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: getting output stream +15:34:39.214 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting output stream +15:34:39.214 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-127.0.0.1: (port 43533) op = 80 +15:34:39.214 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) op = 80 +15:34:39.214 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: getting input stream +15:34:39.214 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting input stream +15:34:39.214 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: call dispatcher +15:34:39.214 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: call dispatcher +15:34:39.214 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(3)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7ff1, -6459606311908840427]: public abstract java.util.Set javax.management.remote.rmi.RMIConnection.queryMBeans(javax.management.ObjectName,java.rmi.MarshalledObject,javax.security.auth.Subject) throws java.io.IOException] +15:34:39.214 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(2)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7ff0, -4232405651922669056]: public abstract java.lang.Object javax.management.remote.rmi.RMIConnection.invoke(javax.management.ObjectName,java.lang.String,java.rmi.MarshalledObject,java.lang.String[],javax.security.auth.Subject) throws javax.management.InstanceNotFoundException,javax.management.MBeanException,javax.management.ReflectionException,java.io.IOException] +15:34:39.214 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" +15:34:39.214 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" +15:34:39.214 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.214 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.215 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: class "javax.management.ObjectName" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.215 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "javax.management.ObjectName" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.215 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" +15:34:39.215 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" +15:34:39.215 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.215 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.215 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "java.rmi.MarshalledObject" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.215 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: class "java.rmi.MarshalledObject" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.215 logback [RMI TCP Connection(3)-127.0.0.1] TRACE javax.management.remote.rmi - connectionId=rmi://127.0.0.1 3 unwrapping query with defaultClassLoader. +15:34:39.215 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" +15:34:39.215 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.215 logback [RMI TCP Connection(3)-127.0.0.1] TRACE javax.management.remote.rmi - connectionId=rmi://127.0.0.1 3, name=:application=*, query=java.rmi.MarshalledObject@d +15:34:39.215 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.misc - Receive a new request. +15:34:39.215 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[B" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.215 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" +15:34:39.216 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.216 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.misc - Finish a request. +15:34:39.216 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[Ljava.lang.String;" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.216 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.timeout - Admin: Timestamp=1607499279216 +15:34:39.216 logback [JMX server connection timeout 40] DEBUG javax.management.remote.timeout - Admin: elapsed=0 +15:34:39.216 logback [RMI TCP Connection(2)-127.0.0.1] TRACE javax.management.remote.rmi - connectionId=rmi://127.0.0.1 4 unwrapping params with MBean extended ClassLoader. +15:34:39.216 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: getting output stream +15:34:39.216 logback [JMX server connection timeout 40] DEBUG javax.management.remote.timeout - Admin: remaining timeout=120000 +15:34:39.216 logback [JMX server connection timeout 40] DEBUG javax.management.remote.misc - Waiting with timeout: 120000 ms remaining +15:34:39.216 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.mbeanserver - name = org.springframework.boot:type=Admin,name=SpringApplication +15:34:39.216 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.216 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[Ljava.lang.String;" found via defaultLoader, defined by null +15:34:39.216 logback [RMI TCP Connection(2)-127.0.0.1] TRACE javax.management.remote.rmi - connectionId=rmi://127.0.0.1 4, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] +15:34:39.216 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.misc - Receive a new request. +15:34:39.217 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.mbeanserver - name = org.springframework.boot:type=Admin,name=SpringApplication +15:34:39.217 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'local.server.port' in PropertySource 'server.ports' +15:34:39.217 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'local.server.port' in PropertySource 'server.ports' with value of type Integer +15:34:39.217 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.misc - Finish a request. +15:34:39.217 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.timeout - Admin: Timestamp=1607499279217 +15:34:39.217 logback [JMX server connection timeout 41] DEBUG javax.management.remote.timeout - Admin: elapsed=0 +15:34:39.217 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting output stream +15:34:39.217 logback [JMX server connection timeout 41] DEBUG javax.management.remote.timeout - Admin: remaining timeout=120000 +15:34:39.217 logback [JMX server connection timeout 41] DEBUG javax.management.remote.misc - Waiting with timeout: 120000 ms remaining +15:34:39.217 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) op = 80 +15:34:39.217 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting input stream +15:34:39.217 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: call dispatcher +15:34:39.217 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(2)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7ff0, -4232405651922669056]: public abstract void javax.management.remote.rmi.RMIConnection.close() throws java.io.IOException] +15:34:39.217 logback [RMI TCP Connection(2)-127.0.0.1] TRACE javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@16985db3: connectionId=rmi://127.0.0.1 4] closing. +15:34:39.217 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.misc - terminate the ServerCommunicatorAdmin object. +15:34:39.217 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - client=javax.management.remote.rmi.RMIConnectionImpl@16985db3: connectionId=rmi://127.0.0.1 4 +15:34:39.217 logback [JMX server connection timeout 41] DEBUG javax.management.remote.timeout - Admin: elapsed=0 +15:34:39.217 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - closing client. +15:34:39.217 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-127.0.0.1: (port 43533) op = 80 +15:34:39.218 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(2)-127.0.0.1: remove object [752891fb:176466c655b:-7ff0, -4232405651922669056] +15:34:39.218 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: getting input stream +15:34:39.218 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - sending notif +15:34:39.218 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - done +15:34:39.218 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: call dispatcher +15:34:39.218 logback [RMI TCP Connection(2)-127.0.0.1] TRACE javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@16985db3: connectionId=rmi://127.0.0.1 4] closed. +15:34:39.218 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting output stream +15:34:39.218 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(3)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7ff1, -6459606311908840427]: public abstract java.lang.Object javax.management.remote.rmi.RMIConnection.getAttribute(javax.management.ObjectName,java.lang.String,javax.security.auth.Subject) throws javax.management.MBeanException,javax.management.AttributeNotFoundException,javax.management.InstanceNotFoundException,javax.management.ReflectionException,java.io.IOException] +15:34:39.218 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" +15:34:39.218 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) op = 80 +15:34:39.218 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.218 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting input stream +15:34:39.218 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(3)-127.0.0.1: class "javax.management.ObjectName" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.219 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: call dispatcher +15:34:39.219 logback [RMI TCP Connection(3)-127.0.0.1] TRACE javax.management.remote.rmi - connectionId=rmi://127.0.0.1 3, name=DefaultDomain:application=, attribute=SnapshotAsJson +15:34:39.219 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(2)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIJRMPServerImpl$ExportedWrapper[752891fb:176466c655b:-7fff, 1557992869461085535]: public abstract javax.management.remote.rmi.RMIConnection javax.management.remote.rmi.RMIServer.newClient(java.lang.Object) throws java.io.IOException] +15:34:39.219 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.misc - Receive a new request. +15:34:39.219 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - making new client +15:34:39.219 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.mbeanserver - Attribute = SnapshotAsJson, ObjectName = DefaultDomain:application= +15:34:39.219 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - no subject +15:34:39.219 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.mbeanserver - name = DefaultDomain:application= +15:34:39.219 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - connectionId=rmi://127.0.0.1 5 +15:34:39.219 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - making new connection: rmi://127.0.0.1 5 +15:34:39.219 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.misc - Creates a new ServerCommunicatorAdmin object with the timeout 120000 +15:34:39.219 logback [JMX server connection timeout 42] DEBUG javax.management.remote.timeout - Admin: timeout=120000 +15:34:39.219 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(2)-127.0.0.1: strongRef = javax.management.remote.rmi.RMIConnectionImpl@1fcd758c: connectionId=rmi://127.0.0.1 5 +15:34:39.219 logback [JMX server connection timeout 42] DEBUG javax.management.remote.timeout - Admin: Timestamp=1607499279219 +15:34:39.219 logback [JMX server connection timeout 42] DEBUG javax.management.remote.timeout - Admin: remaining timeout=120000 +15:34:39.219 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(2)-127.0.0.1: add object [752891fb:176466c655b:-7fe6, -8915338775128629224] +15:34:39.219 logback [JMX server connection timeout 42] DEBUG javax.management.remote.misc - Waiting with timeout: 120000 ms remaining +15:34:39.219 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - new connection done: rmi://127.0.0.1 5 +15:34:39.219 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting output stream +15:34:39.220 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) op = 80 +15:34:39.220 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting input stream +15:34:39.220 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: call dispatcher +15:34:39.220 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.misc - Finish a request. +15:34:39.220 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.timeout - Admin: Timestamp=1607499279220 +15:34:39.220 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(2)-127.0.0.1: [127.0.0.1: sun.rmi.transport.DGCImpl[0:0:0, 2]: java.rmi.dgc.Lease dirty(java.rmi.server.ObjID[], long, java.rmi.dgc.Lease)] +15:34:39.220 logback [JMX server connection timeout 40] DEBUG javax.management.remote.timeout - Admin: elapsed=0 +15:34:39.220 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: getting output stream +15:34:39.220 logback [JMX server connection timeout 40] DEBUG javax.management.remote.timeout - Admin: remaining timeout=120000 +15:34:39.220 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.220 logback [JMX server connection timeout 40] DEBUG javax.management.remote.misc - Waiting with timeout: 120000 ms remaining +15:34:39.220 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[Ljava.rmi.server.ObjID;" found via defaultLoader, defined by null +15:34:39.220 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [Ljava.rmi.server.ObjID;, array length: -1, nRefs: 2, depth: 1, bytes: 80, ex: n/a +15:34:39.220 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [Ljava.rmi.server.ObjID;, array length: 1, nRefs: 3, depth: 1, bytes: 86, ex: n/a +15:34:39.220 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.220 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "java.rmi.server.ObjID" found via defaultLoader, defined by null +15:34:39.221 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.server.ObjID, array length: -1, nRefs: 5, depth: 2, bytes: 164, ex: n/a +15:34:39.221 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.221 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "java.rmi.server.UID" found via defaultLoader, defined by null +15:34:39.221 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.server.UID, array length: -1, nRefs: 8, depth: 3, bytes: 233, ex: n/a +15:34:39.221 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.Lease", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.221 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "java.rmi.dgc.Lease" found via defaultLoader, defined by null +15:34:39.221 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.dgc.Lease, array length: -1, nRefs: 11, depth: 1, bytes: 330, ex: n/a +15:34:39.221 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 13, depth: 2, bytes: 395, ex: n/a +15:34:39.221 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.221 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "java.rmi.dgc.VMID" found via defaultLoader, defined by null +15:34:39.221 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.dgc.VMID, array length: -1, nRefs: 14, depth: 2, bytes: 396, ex: n/a +15:34:39.221 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.222 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[B" found via defaultLoader, defined by null +15:34:39.222 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [B, array length: -1, nRefs: 17, depth: 3, bytes: 416, ex: n/a +15:34:39.222 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [B, array length: 8, nRefs: 18, depth: 3, bytes: 422, ex: n/a +15:34:39.222 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 19, depth: 3, bytes: 436, ex: n/a +15:34:39.222 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(2)-127.0.0.1: vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe +15:34:39.222 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(2)-127.0.0.1: id = [752891fb:176466c655b:-7fe6, -8915338775128629224], vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe, duration = 600000 +15:34:39.222 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(2)-127.0.0.1: add to dirty set: ccee31b1defcc993:1474188a:175f2f486b7:-7ffe +15:34:39.222 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting output stream +15:34:39.222 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) op = 84 +15:34:39.223 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) op = 80 +15:34:39.223 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting input stream +15:34:39.223 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: call dispatcher +15:34:39.223 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(2)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7fe6, -8915338775128629224]: public abstract java.lang.String javax.management.remote.rmi.RMIConnection.getConnectionId() throws java.io.IOException] +15:34:39.223 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting output stream +15:34:39.223 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) op = 80 +15:34:39.223 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting input stream +15:34:39.223 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: call dispatcher +15:34:39.223 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(2)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7fe6, -8915338775128629224]: public abstract java.lang.Object javax.management.remote.rmi.RMIConnection.invoke(javax.management.ObjectName,java.lang.String,java.rmi.MarshalledObject,java.lang.String[],javax.security.auth.Subject) throws javax.management.InstanceNotFoundException,javax.management.MBeanException,javax.management.ReflectionException,java.io.IOException] +15:34:39.223 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" +15:34:39.223 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.224 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "javax.management.ObjectName" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.224 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" +15:34:39.224 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-127.0.0.1: (port 43533) op = 80 +15:34:39.224 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.224 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: getting input stream +15:34:39.224 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "java.rmi.MarshalledObject" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.224 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: call dispatcher +15:34:39.224 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(3)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7ff1, -6459606311908840427]: public abstract void javax.management.remote.rmi.RMIConnection.close() throws java.io.IOException] +15:34:39.224 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" +15:34:39.224 logback [RMI TCP Connection(3)-127.0.0.1] TRACE javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@2893ba3b: connectionId=rmi://127.0.0.1 3] closing. +15:34:39.224 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.misc - terminate the ServerCommunicatorAdmin object. +15:34:39.224 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.224 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.rmi - client=javax.management.remote.rmi.RMIConnectionImpl@2893ba3b: connectionId=rmi://127.0.0.1 3 +15:34:39.224 logback [JMX server connection timeout 40] DEBUG javax.management.remote.timeout - Admin: elapsed=4 +15:34:39.224 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.rmi - closing client. +15:34:39.224 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[B" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.224 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(3)-127.0.0.1: remove object [752891fb:176466c655b:-7ff1, -6459606311908840427] +15:34:39.224 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" +15:34:39.224 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.rmi - sending notif +15:34:39.224 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.224 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG javax.management.remote.rmi - done +15:34:39.224 logback [RMI TCP Connection(3)-127.0.0.1] TRACE javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@2893ba3b: connectionId=rmi://127.0.0.1 3] closed. +15:34:39.224 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[Ljava.lang.String;" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.224 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(3)-127.0.0.1: getting output stream +15:34:39.224 logback [RMI TCP Connection(2)-127.0.0.1] TRACE javax.management.remote.rmi - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.mbeanserver - name = org.springframework.boot:type=Admin,name=SpringApplication +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[Ljava.lang.String;" found via defaultLoader, defined by null +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] TRACE javax.management.remote.rmi - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.misc - Receive a new request. +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.mbeanserver - name = org.springframework.boot:type=Admin,name=SpringApplication +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.ssl.key-store' in PropertySource 'server.ports' +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.ssl.key-store' in PropertySource 'configurationProperties' +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.ssl.key-store' in PropertySource 'servletConfigInitParams' +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.ssl.key-store' in PropertySource 'servletContextInitParams' +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.ssl.key-store' in PropertySource 'systemProperties' +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.ssl.key-store' in PropertySource 'systemEnvironment' +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.ssl.key-store' in PropertySource 'random' +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.ssl.key-store' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'server.ssl.key-store' in any property source +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.misc - Finish a request. +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.timeout - Admin: Timestamp=1607499279225 +15:34:39.225 logback [JMX server connection timeout 42] DEBUG javax.management.remote.timeout - Admin: elapsed=0 +15:34:39.225 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting output stream +15:34:39.225 logback [JMX server connection timeout 42] DEBUG javax.management.remote.timeout - Admin: remaining timeout=120000 +15:34:39.225 logback [JMX server connection timeout 42] DEBUG javax.management.remote.misc - Waiting with timeout: 120000 ms remaining +15:34:39.226 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) op = 80 +15:34:39.226 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting input stream +15:34:39.226 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: call dispatcher +15:34:39.226 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(2)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7fe6, -8915338775128629224]: public abstract java.lang.Object javax.management.remote.rmi.RMIConnection.invoke(javax.management.ObjectName,java.lang.String,java.rmi.MarshalledObject,java.lang.String[],javax.security.auth.Subject) throws javax.management.InstanceNotFoundException,javax.management.MBeanException,javax.management.ReflectionException,java.io.IOException] +15:34:39.226 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" +15:34:39.226 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.226 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "javax.management.ObjectName" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.226 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" +15:34:39.226 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.226 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "java.rmi.MarshalledObject" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.226 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" +15:34:39.226 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.226 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[B" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.226 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[Ljava.lang.String;" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] TRACE javax.management.remote.rmi - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.mbeanserver - name = org.springframework.boot:type=Admin,name=SpringApplication +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[Ljava.lang.String;" found via defaultLoader, defined by null +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] TRACE javax.management.remote.rmi - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.misc - Receive a new request. +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.mbeanserver - name = org.springframework.boot:type=Admin,name=SpringApplication +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.servlet.context-path' in PropertySource 'server.ports' +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.servlet.context-path' in PropertySource 'configurationProperties' +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.servlet.context-path' in PropertySource 'servletConfigInitParams' +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.servlet.context-path' in PropertySource 'servletContextInitParams' +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.servlet.context-path' in PropertySource 'systemProperties' +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.servlet.context-path' in PropertySource 'systemEnvironment' +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.servlet.context-path' in PropertySource 'random' +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.servlet.context-path' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'server.servlet.context-path' in any property source +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.misc - Finish a request. +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.timeout - Admin: Timestamp=1607499279227 +15:34:39.227 logback [JMX server connection timeout 42] DEBUG javax.management.remote.timeout - Admin: elapsed=0 +15:34:39.227 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting output stream +15:34:39.228 logback [JMX server connection timeout 42] DEBUG javax.management.remote.timeout - Admin: remaining timeout=119999 +15:34:39.228 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) op = 80 +15:34:39.228 logback [JMX server connection timeout 42] DEBUG javax.management.remote.misc - Waiting with timeout: 119999 ms remaining +15:34:39.228 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting input stream +15:34:39.228 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: call dispatcher +15:34:39.228 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(2)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7fe6, -8915338775128629224]: public abstract java.lang.Object javax.management.remote.rmi.RMIConnection.invoke(javax.management.ObjectName,java.lang.String,java.rmi.MarshalledObject,java.lang.String[],javax.security.auth.Subject) throws javax.management.InstanceNotFoundException,javax.management.MBeanException,javax.management.ReflectionException,java.io.IOException] +15:34:39.228 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" +15:34:39.228 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.228 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "javax.management.ObjectName" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.228 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" +15:34:39.228 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.228 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "java.rmi.MarshalledObject" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.228 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[B" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[Ljava.lang.String;" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] TRACE javax.management.remote.rmi - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.mbeanserver - name = org.springframework.boot:type=Admin,name=SpringApplication +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[Ljava.lang.String;" found via defaultLoader, defined by null +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] TRACE javax.management.remote.rmi - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.misc - Receive a new request. +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.mbeanserver - name = org.springframework.boot:type=Admin,name=SpringApplication +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.mvc.servlet.path' in PropertySource 'server.ports' +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.mvc.servlet.path' in PropertySource 'configurationProperties' +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.mvc.servlet.path' in PropertySource 'servletConfigInitParams' +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.mvc.servlet.path' in PropertySource 'servletContextInitParams' +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.mvc.servlet.path' in PropertySource 'systemProperties' +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.mvc.servlet.path' in PropertySource 'systemEnvironment' +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.mvc.servlet.path' in PropertySource 'random' +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.mvc.servlet.path' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'spring.mvc.servlet.path' in any property source +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.misc - Finish a request. +15:34:39.229 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.timeout - Admin: Timestamp=1607499279229 +15:34:39.230 logback [JMX server connection timeout 42] DEBUG javax.management.remote.timeout - Admin: elapsed=1 +15:34:39.230 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting output stream +15:34:39.230 logback [JMX server connection timeout 42] DEBUG javax.management.remote.timeout - Admin: remaining timeout=119999 +15:34:39.230 logback [JMX server connection timeout 42] DEBUG javax.management.remote.misc - Waiting with timeout: 119999 ms remaining +15:34:39.230 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) op = 80 +15:34:39.230 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting input stream +15:34:39.230 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: call dispatcher +15:34:39.230 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(2)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7fe6, -8915338775128629224]: public abstract java.lang.Object javax.management.remote.rmi.RMIConnection.invoke(javax.management.ObjectName,java.lang.String,java.rmi.MarshalledObject,java.lang.String[],javax.security.auth.Subject) throws javax.management.InstanceNotFoundException,javax.management.MBeanException,javax.management.ReflectionException,java.io.IOException] +15:34:39.230 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "javax.management.ObjectName", codebase = "" +15:34:39.230 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.230 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "javax.management.ObjectName" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.230 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "java.rmi.MarshalledObject", codebase = "" +15:34:39.230 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.230 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "java.rmi.MarshalledObject" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.230 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[B", codebase = "" +15:34:39.230 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.230 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[B" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "" +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: (thread context class loader: sun.misc.Launcher$AppClassLoader@18b4aac2) +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[Ljava.lang.String;" found via thread context class loader (no security manager: codebase disabled), defined by null +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] TRACE javax.management.remote.rmi - connectionId=rmi://127.0.0.1 5 unwrapping params with MBean extended ClassLoader. +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.mbeanserver - name = org.springframework.boot:type=Admin,name=SpringApplication +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: name = "[Ljava.lang.String;", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(2)-127.0.0.1: class "[Ljava.lang.String;" found via defaultLoader, defined by null +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] TRACE javax.management.remote.rmi - connectionId=rmi://127.0.0.1 5, name=org.springframework.boot:type=Admin,name=SpringApplication, operationName=getProperty, signature=[java.lang.String] +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.misc - Receive a new request. +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.mbeanserver - name = org.springframework.boot:type=Admin,name=SpringApplication +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.address' in PropertySource 'server.ports' +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.address' in PropertySource 'configurationProperties' +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.address' in PropertySource 'servletConfigInitParams' +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.address' in PropertySource 'servletContextInitParams' +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.address' in PropertySource 'systemProperties' +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.address' in PropertySource 'systemEnvironment' +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.address' in PropertySource 'random' +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'server.address' in PropertySource 'Config resource 'classpath:/application.properties' via location 'optional:classpath:/'' +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] TRACE o.s.c.e.PropertySourcesPropertyResolver - Could not find key 'server.address' in any property source +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.misc - Finish a request. +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.timeout - Admin: Timestamp=1607499279231 +15:34:39.231 logback [JMX server connection timeout 42] DEBUG javax.management.remote.timeout - Admin: elapsed=0 +15:34:39.231 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting output stream +15:34:39.232 logback [JMX server connection timeout 42] DEBUG javax.management.remote.timeout - Admin: remaining timeout=119999 +15:34:39.232 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) op = 80 +15:34:39.232 logback [JMX server connection timeout 42] DEBUG javax.management.remote.misc - Waiting with timeout: 119999 ms remaining +15:34:39.232 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting input stream +15:34:39.232 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: call dispatcher +15:34:39.232 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(2)-127.0.0.1: [127.0.0.1: javax.management.remote.rmi.RMIConnectionImpl[752891fb:176466c655b:-7fe6, -8915338775128629224]: public abstract void javax.management.remote.rmi.RMIConnection.close() throws java.io.IOException] +15:34:39.232 logback [RMI TCP Connection(2)-127.0.0.1] TRACE javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@1fcd758c: connectionId=rmi://127.0.0.1 5] closing. +15:34:39.232 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.misc - terminate the ServerCommunicatorAdmin object. +15:34:39.232 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - client=javax.management.remote.rmi.RMIConnectionImpl@1fcd758c: connectionId=rmi://127.0.0.1 5 +15:34:39.232 logback [JMX server connection timeout 42] DEBUG javax.management.remote.timeout - Admin: elapsed=1 +15:34:39.232 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - closing client. +15:34:39.232 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(2)-127.0.0.1: remove object [752891fb:176466c655b:-7fe6, -8915338775128629224] +15:34:39.232 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - sending notif +15:34:39.232 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG javax.management.remote.rmi - done +15:34:39.232 logback [RMI TCP Connection(2)-127.0.0.1] TRACE javax.management.remote.rmi - [javax.management.remote.rmi.RMIConnectionImpl@1fcd758c: connectionId=rmi://127.0.0.1 5] closed. +15:34:39.232 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(2)-127.0.0.1: getting output stream +15:34:40.155 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499280155; nextExpiration=0; keyCount=0; hasEvents=false; eval=false +15:34:41.156 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499281156; nextExpiration=1607499281155; keyCount=0; hasEvents=false; eval=false +15:34:41.424 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: (port 43533) connection closed +15:34:41.425 logback [RMI TCP Connection(2)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(2)-127.0.0.1: close connection +15:34:41.426 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-127.0.0.1: (port 43533) connection closed +15:34:41.426 logback [RMI TCP Connection(3)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(3)-127.0.0.1: close connection +15:34:41.426 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: (port 43533) connection closed +15:34:41.426 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-127.0.0.1: accepted socket from [127.0.0.1:35282] +15:34:41.426 logback [RMI TCP Connection(1)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(1)-127.0.0.1: close connection +15:34:41.426 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-127.0.0.1: (port 43533) suggesting 127.0.0.1:35282 +15:34:41.427 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-127.0.0.1: (port 43533) client using 127.0.0.1:45907 +15:34:41.427 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-127.0.0.1: (port 43533) op = 80 +15:34:41.427 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(4)-127.0.0.1: getting input stream +15:34:41.427 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(4)-127.0.0.1: call dispatcher +15:34:41.427 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.server.call - RMI TCP Connection(4)-127.0.0.1: [127.0.0.1: sun.rmi.transport.DGCImpl[0:0:0, 2]: void clean(java.rmi.server.ObjID[], long, java.rmi.dgc.VMID, boolean)] +15:34:41.427 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-127.0.0.1: name = "[Ljava.rmi.server.ObjID;", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:41.427 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-127.0.0.1: class "[Ljava.rmi.server.ObjID;" found via defaultLoader, defined by null +15:34:41.427 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [Ljava.rmi.server.ObjID;, array length: -1, nRefs: 2, depth: 1, bytes: 80, ex: n/a +15:34:41.428 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [Ljava.rmi.server.ObjID;, array length: 6, nRefs: 3, depth: 1, bytes: 86, ex: n/a +15:34:41.428 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.ObjID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:41.428 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-127.0.0.1: class "java.rmi.server.ObjID" found via defaultLoader, defined by null +15:34:41.428 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.server.ObjID, array length: -1, nRefs: 5, depth: 2, bytes: 164, ex: n/a +15:34:41.428 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.server.UID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:41.428 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-127.0.0.1: class "java.rmi.server.UID" found via defaultLoader, defined by null +15:34:41.428 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.server.UID, array length: -1, nRefs: 8, depth: 3, bytes: 233, ex: n/a +15:34:41.428 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 10, depth: 2, bytes: 255, ex: n/a +15:34:41.428 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 11, depth: 3, bytes: 269, ex: n/a +15:34:41.428 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 12, depth: 2, bytes: 289, ex: n/a +15:34:41.428 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 13, depth: 3, bytes: 303, ex: n/a +15:34:41.428 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 14, depth: 2, bytes: 323, ex: n/a +15:34:41.428 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 15, depth: 3, bytes: 337, ex: n/a +15:34:41.428 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 16, depth: 2, bytes: 357, ex: n/a +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 17, depth: 3, bytes: 371, ex: n/a +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 18, depth: 2, bytes: 391, ex: n/a +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 19, depth: 3, bytes: 405, ex: n/a +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 20, depth: 1, bytes: 484, ex: n/a +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-127.0.0.1: name = "java.rmi.dgc.VMID", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-127.0.0.1: class "java.rmi.dgc.VMID" found via defaultLoader, defined by null +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class java.rmi.dgc.VMID, array length: -1, nRefs: 21, depth: 1, bytes: 485, ex: n/a +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-127.0.0.1: name = "[B", codebase = "", defaultLoader = sun.misc.Launcher$ExtClassLoader@61baa894 +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.loader - RMI TCP Connection(4)-127.0.0.1: class "[B" found via defaultLoader, defined by null +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [B, array length: -1, nRefs: 24, depth: 2, bytes: 505, ex: n/a +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter ALLOWED: class [B, array length: 8, nRefs: 25, depth: 2, bytes: 511, ex: n/a +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG java.io.serialization - ObjectInputFilter UNDECIDED: null, array length: -1, nRefs: 26, depth: 2, bytes: 525, ex: n/a +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(4)-127.0.0.1: id = [752891fb:176466c655b:-7fe6, -8915338775128629224], vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe, strong = false +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(4)-127.0.0.1: id = [752891fb:176466c655b:-7ff7, -1066429984179981202], vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe, strong = false +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(4)-127.0.0.1: id = [752891fb:176466c655b:-7ff0, -4232405651922669056], vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe, strong = false +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(4)-127.0.0.1: id = [752891fb:176466c655b:-7ffd, 5973335293310000914], vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe, strong = false +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(4)-127.0.0.1: id = [752891fb:176466c655b:-7fff, 1557992869461085535], vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe, strong = false +15:34:41.429 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(4)-127.0.0.1: remove from dirty set: ccee31b1defcc993:1474188a:175f2f486b7:-7ffe +15:34:41.430 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(4)-127.0.0.1: reference set is empty: target = sun.rmi.transport.Target@24b422fd +15:34:41.430 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.dgc - RMI TCP Connection(4)-127.0.0.1: id = [752891fb:176466c655b:-7ff1, -6459606311908840427], vmid = ccee31b1defcc993:1474188a:175f2f486b7:-7ffe, strong = false +15:34:41.430 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.transport.misc - RMI TCP Connection(4)-127.0.0.1: getting output stream +15:34:42.157 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499282157; nextExpiration=1607499282156; keyCount=0; hasEvents=false; eval=false +15:34:43.158 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499283158; nextExpiration=1607499283157; keyCount=0; hasEvents=false; eval=false +15:34:44.159 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499284159; nextExpiration=1607499284158; keyCount=0; hasEvents=false; eval=false +15:34:45.161 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499285161; nextExpiration=1607499285159; keyCount=0; hasEvents=false; eval=false +15:34:46.162 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499286162; nextExpiration=1607499286161; keyCount=0; hasEvents=false; eval=false +15:34:47.163 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499287163; nextExpiration=1607499287162; keyCount=0; hasEvents=false; eval=false +15:34:48.165 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499288165; nextExpiration=1607499288163; keyCount=0; hasEvents=false; eval=false +15:34:49.166 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499289166; nextExpiration=1607499289165; keyCount=0; hasEvents=false; eval=false +15:34:50.167 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499290167; nextExpiration=1607499290166; keyCount=0; hasEvents=false; eval=false +15:34:51.168 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499291168; nextExpiration=1607499291167; keyCount=0; hasEvents=false; eval=false +15:34:52.170 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499292170; nextExpiration=1607499292168; keyCount=0; hasEvents=false; eval=false +15:34:53.171 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499293171; nextExpiration=1607499293170; keyCount=0; hasEvents=false; eval=false +15:34:54.172 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499294172; nextExpiration=1607499294171; keyCount=0; hasEvents=false; eval=false +15:34:55.174 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499295173; nextExpiration=1607499295172; keyCount=0; hasEvents=false; eval=false +15:34:56.175 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499296175; nextExpiration=1607499296173; keyCount=0; hasEvents=false; eval=false +15:34:57.176 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499297176; nextExpiration=1607499297175; keyCount=0; hasEvents=false; eval=false +15:34:58.177 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499298177; nextExpiration=1607499298176; keyCount=0; hasEvents=false; eval=false +15:34:59.178 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499299178; nextExpiration=1607499299177; keyCount=0; hasEvents=false; eval=false +15:35:00.179 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499300179; nextExpiration=1607499300178; keyCount=0; hasEvents=false; eval=false +15:35:01.180 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499301180; nextExpiration=1607499301179; keyCount=0; hasEvents=false; eval=false +15:35:02.181 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499302181; nextExpiration=1607499302180; keyCount=0; hasEvents=false; eval=false +15:35:03.182 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499303182; nextExpiration=1607499303181; keyCount=0; hasEvents=false; eval=false +15:35:04.183 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499304183; nextExpiration=1607499304182; keyCount=0; hasEvents=false; eval=false +15:35:05.184 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499305184; nextExpiration=1607499305183; keyCount=0; hasEvents=false; eval=false +15:35:06.186 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499306186; nextExpiration=1607499306184; keyCount=0; hasEvents=false; eval=false +15:35:07.187 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499307187; nextExpiration=1607499307186; keyCount=0; hasEvents=false; eval=false +15:35:08.188 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499308188; nextExpiration=1607499308187; keyCount=0; hasEvents=false; eval=false +15:35:08.660 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-127.0.0.1: (port 43533) connection closed +15:35:08.660 logback [RMI TCP Connection(4)-127.0.0.1] DEBUG sun.rmi.transport.tcp - RMI TCP Connection(4)-127.0.0.1: close connection +15:35:09.189 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499309189; nextExpiration=1607499309188; keyCount=0; hasEvents=false; eval=false +15:35:10.190 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499310190; nextExpiration=1607499310189; keyCount=0; hasEvents=false; eval=false +15:35:11.192 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499311192; nextExpiration=1607499311190; keyCount=0; hasEvents=false; eval=false +15:35:12.193 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499312193; nextExpiration=1607499312192; keyCount=0; hasEvents=false; eval=false +15:35:13.194 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499313194; nextExpiration=1607499313193; keyCount=0; hasEvents=false; eval=false +15:35:14.196 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499314196; nextExpiration=1607499314194; keyCount=0; hasEvents=false; eval=false +15:35:15.197 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499315197; nextExpiration=1607499315196; keyCount=0; hasEvents=false; eval=false +15:35:16.198 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499316198; nextExpiration=1607499316197; keyCount=0; hasEvents=false; eval=false +15:35:17.199 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499317199; nextExpiration=1607499317198; keyCount=0; hasEvents=false; eval=false +15:35:18.201 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499318201; nextExpiration=1607499318199; keyCount=0; hasEvents=false; eval=false +15:35:19.202 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499319202; nextExpiration=1607499319201; keyCount=0; hasEvents=false; eval=false +15:35:20.203 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499320203; nextExpiration=1607499320202; keyCount=0; hasEvents=false; eval=false +15:35:21.205 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499321205; nextExpiration=1607499321203; keyCount=0; hasEvents=false; eval=false +15:35:22.206 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499322206; nextExpiration=1607499322205; keyCount=0; hasEvents=false; eval=false +15:35:23.207 logback [http-nio-8080-ClientPoller] DEBUG o.apache.tomcat.util.net.NioEndpoint - timeout completed: keys processed=0; now=1607499323207; nextExpiration=1607499323206; keyCount=0; hasEvents=false; eval=false +15:35:23.757 logback [SpringContextShutdownHook] DEBUG o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@68e965f5, started on Wed Dec 09 15:34:38 CST 2020 +15:35:23.757 logback [SpringContextShutdownHook] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.liveBeansView.mbeanDomain' in PropertySource 'server.ports' +15:35:23.757 logback [SpringContextShutdownHook] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.liveBeansView.mbeanDomain' in PropertySource 'configurationProperties' +15:35:23.757 logback [SpringContextShutdownHook] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.liveBeansView.mbeanDomain' in PropertySource 'servletConfigInitParams' +15:35:23.757 logback [SpringContextShutdownHook] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.liveBeansView.mbeanDomain' in PropertySource 'servletContextInitParams' +15:35:23.757 logback [SpringContextShutdownHook] TRACE o.s.c.e.PropertySourcesPropertyResolver - Searching for key 'spring.liveBeansView.mbeanDomain' in PropertySource 'systemProperties' +15:35:23.757 logback [SpringContextShutdownHook] DEBUG o.s.c.e.PropertySourcesPropertyResolver - Found key 'spring.liveBeansView.mbeanDomain' in PropertySource 'systemProperties' with value of type String +15:35:23.758 logback [SpringContextShutdownHook] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'springApplicationAdminRegistrar' +15:35:23.758 logback [SpringContextShutdownHook] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'lifecycleProcessor' +15:35:23.758 logback [SpringContextShutdownHook] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'webServerGracefulShutdown' +15:35:23.758 logback [SpringContextShutdownHook] TRACE o.s.b.f.s.DefaultListableBeanFactory - Returning cached instance of singleton bean 'webServerStartStop' +15:35:23.758 logback [SpringContextShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Stopping beans in phase 2147483647 +15:35:23.759 logback [SpringContextShutdownHook] TRACE o.s.c.s.DefaultLifecycleProcessor - Asking bean 'webServerGracefulShutdown' of type [org.springframework.boot.web.servlet.context.WebServerGracefulShutdownLifecycle] to stop +15:35:23.760 logback [SpringContextShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Bean 'webServerGracefulShutdown' completed its stop procedure +15:35:23.760 logback [SpringContextShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Stopping beans in phase 2147483646 +15:35:23.760 logback [SpringContextShutdownHook] TRACE o.s.c.s.DefaultLifecycleProcessor - Asking bean 'webServerStartStop' of type [org.springframework.boot.web.servlet.context.WebServerStartStopLifecycle] to stop +15:35:23.813 logback [SpringContextShutdownHook] DEBUG o.s.c.s.DefaultLifecycleProcessor - Bean 'webServerStartStop' completed its stop procedure +15:35:23.813 logback [SpringContextShutdownHook] TRACE o.s.b.f.s.DefaultListableBeanFactory - Destroying singletons in org.springframework.beans.factory.support.DefaultListableBeanFactory@514646ef: defining beans [org.springframework.context.annotation.internalConfigurationAnnotationProcessor,org.springframework.context.annotation.internalAutowiredAnnotationProcessor,org.springframework.context.annotation.internalCommonAnnotationProcessor,org.springframework.context.event.internalEventListenerProcessor,org.springframework.context.event.internalEventListenerFactory,application,org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory,myWebMvcConfigurationSupport,learnController,myInterceptor,requestMappingHandlerMapping,mvcUrlPathHelper,mvcPathMatcher,mvcContentNegotiationManager,viewControllerHandlerMapping,beanNameHandlerMapping,routerFunctionMapping,resourceHandlerMapping,mvcResourceUrlProvider,defaultServletHandlerMapping,requestMappingHandlerAdapter,handlerFunctionAdapter,mvcConversionService,mvcValidator,mvcUriComponentsContributor,httpRequestHandlerAdapter,simpleControllerHandlerAdapter,handlerExceptionResolver,mvcViewResolver,mvcHandlerMappingIntrospector,localeResolver,themeResolver,flashMapManager,viewNameTranslator,org.springframework.boot.autoconfigure.AutoConfigurationPackages,org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration,propertySourcesPlaceholderConfigurer,org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration$TomcatWebSocketConfiguration,websocketServletWebServerCustomizer,org.springframework.boot.autoconfigure.websocket.servlet.WebSocketServletAutoConfiguration,org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryConfiguration$EmbeddedTomcat,tomcatServletWebServerFactory,org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryAutoConfiguration,servletWebServerFactoryCustomizer,tomcatServletWebServerFactoryCustomizer,org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor,org.springframework.boot.context.internalConfigurationPropertiesBinderFactory,org.springframework.boot.context.internalConfigurationPropertiesBinder,org.springframework.boot.context.properties.BoundConfigurationProperties,org.springframework.boot.context.properties.EnableConfigurationPropertiesRegistrar.methodValidationExcludeFilter,server-org.springframework.boot.autoconfigure.web.ServerProperties,webServerFactoryCustomizerBeanPostProcessor,errorPageRegistrarBeanPostProcessor,org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletConfiguration,dispatcherServlet,spring.mvc-org.springframework.boot.autoconfigure.web.servlet.WebMvcProperties,org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration,dispatcherServletRegistration,org.springframework.boot.autoconfigure.web.servlet.DispatcherServletAutoConfiguration,org.springframework.boot.autoconfigure.task.TaskExecutionAutoConfiguration,taskExecutorBuilder,applicationTaskExecutor,spring.task.execution-org.springframework.boot.autoconfigure.task.TaskExecutionProperties,org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration,error,beanNameViewResolver,org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration$DefaultErrorViewResolverConfiguration,conventionErrorViewResolver,spring.web-org.springframework.boot.autoconfigure.web.WebProperties,spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties,org.springframework.boot.autoconfigure.web.servlet.error.ErrorMvcAutoConfiguration,errorAttributes,basicErrorController,errorPageCustomizer,preserveErrorControllerTargetClassPostProcessor,org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration,mbeanExporter,objectNamingStrategy,mbeanServer,org.springframework.boot.autoconfigure.admin.SpringApplicationAdminJmxAutoConfiguration,springApplicationAdminRegistrar,org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$ClassProxyingConfiguration,org.springframework.boot.autoconfigure.aop.AopAutoConfiguration,org.springframework.boot.autoconfigure.availability.ApplicationAvailabilityAutoConfiguration,applicationAvailability,org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration,org.springframework.boot.autoconfigure.context.LifecycleAutoConfiguration,lifecycleProcessor,spring.lifecycle-org.springframework.boot.autoconfigure.context.LifecycleProperties,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration,standardJacksonObjectMapperBuilderCustomizer,spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration,jacksonObjectMapperBuilder,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$ParameterNamesModuleConfiguration,parameterNamesModule,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration,jacksonObjectMapper,org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration,jsonComponentModule,org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration,stringHttpMessageConverter,org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration,mappingJackson2HttpMessageConverter,org.springframework.boot.autoconfigure.http.JacksonHttpMessageConvertersConfiguration,org.springframework.boot.autoconfigure.http.HttpMessageConvertersAutoConfiguration,messageConverters,org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration,spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties,org.springframework.boot.autoconfigure.task.TaskSchedulingAutoConfiguration,taskSchedulerBuilder,spring.task.scheduling-org.springframework.boot.autoconfigure.task.TaskSchedulingProperties,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafJava8TimeDialect,java8TimeDialect,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration$ThymeleafViewResolverConfiguration,thymeleafViewResolver,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafWebMvcConfiguration,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration,templateEngine,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$DefaultTemplateResolverConfiguration,defaultTemplateResolver,org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration,spring.thymeleaf-org.springframework.boot.autoconfigure.thymeleaf.ThymeleafProperties,org.springframework.boot.autoconfigure.web.client.RestTemplateAutoConfiguration,restTemplateBuilderConfigurer,restTemplateBuilder,org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration$TomcatWebServerFactoryCustomizerConfiguration,tomcatWebServerFactoryCustomizer,org.springframework.boot.autoconfigure.web.embedded.EmbeddedWebServerFactoryCustomizerAutoConfiguration,org.springframework.boot.autoconfigure.web.servlet.HttpEncodingAutoConfiguration,characterEncodingFilter,localeCharsetMappingsCustomizer,org.springframework.boot.autoconfigure.web.servlet.MultipartAutoConfiguration,multipartConfigElement,multipartResolver,spring.servlet.multipart-org.springframework.boot.autoconfigure.web.servlet.MultipartProperties,org.springframework.aop.config.internalAutoProxyCreator]; root of factory hierarchy +15:35:23.813 logback [SpringContextShutdownHook] TRACE o.s.b.f.s.DisposableBeanAdapter - Invoking destroy() on bean with name 'springApplicationAdminRegistrar' +15:35:23.813 logback [SpringContextShutdownHook] TRACE o.s.b.f.s.DisposableBeanAdapter - Invoking destroy() on bean with name 'mbeanExporter' +15:35:23.813 logback [SpringContextShutdownHook] DEBUG o.s.j.e.a.AnnotationMBeanExporter - Unregistering JMX-exposed beans on shutdown +15:35:23.814 logback [SpringContextShutdownHook] TRACE o.s.b.f.s.DefaultListableBeanFactory - Retrieved dependent beans for bean 'mvcResourceUrlProvider': [requestMappingHandlerMapping, viewControllerHandlerMapping, beanNameHandlerMapping, routerFunctionMapping, resourceHandlerMapping] +15:35:23.814 logback [SpringContextShutdownHook] TRACE o.s.b.f.s.DisposableBeanAdapter - Invoking destroy() on bean with name 'characterEncodingFilter' +15:35:23.814 logback [SpringContextShutdownHook] TRACE o.s.b.f.s.DefaultListableBeanFactory - Retrieved dependent beans for bean 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory': [org.springframework.context.annotation.internalConfigurationAnnotationProcessor] +15:35:32.997 logback [main] INFO com.dudu.Application - Starting Application using Java 1.8.0_271 on smart-PC with PID 717 (/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes started by smart in /media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1) +15:35:32.999 logback [main] INFO com.dudu.Application - No active profile set, falling back to default profiles: default +15:35:33.544 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port(s): 8080 (http) +15:35:33.550 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8080"] +15:35:33.550 logback [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +15:35:33.550 logback [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.39] +15:35:33.587 logback [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +15:35:33.587 logback [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 556 ms +15:35:33.805 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8080"] +15:35:33.814 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port(s): 8080 (http) with context path '' +15:35:33.821 logback [main] INFO com.dudu.Application - Started Application in 1.157 seconds (JVM running for 1.463) diff --git a/chapter7-1/logback.log b/chapter7-1/logback.log new file mode 100755 index 0000000..45f6074 --- /dev/null +++ b/chapter7-1/logback.log @@ -0,0 +1,179 @@ +09:11:58.167 logback [main] INFO com.dudu.Application - Starting Application using Java 1.8.0_271 on smart-PC with PID 31580 (/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes started by smart in /media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1) +09:11:58.170 logback [main] INFO com.dudu.Application - The following profiles are active: test +09:11:58.841 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port(s): 8081 (http) +09:11:58.847 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8081"] +09:11:58.847 logback [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +09:11:58.848 logback [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.39] +09:11:58.894 logback [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +09:11:58.894 logback [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 690 ms +09:11:59.116 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8081"] +09:11:59.125 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port(s): 8081 (http) with context path '' +09:11:59.132 logback [main] INFO com.dudu.Application - Started Application in 1.415 seconds (JVM running for 1.872) +09:12:24.791 logback [http-nio-8081-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +09:12:24.791 logback [http-nio-8081-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +09:12:24.792 logback [http-nio-8081-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +09:13:17.850 logback [main] INFO com.dudu.Application - Starting Application using Java 1.8.0_271 on smart-PC with PID 1120 (/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes started by smart in /media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1) +09:13:17.852 logback [main] INFO com.dudu.Application - The following profiles are active: dev +09:13:18.359 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port(s): 8082 (http) +09:13:18.365 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8082"] +09:13:18.366 logback [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +09:13:18.366 logback [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.39] +09:13:18.402 logback [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +09:13:18.402 logback [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 517 ms +09:13:18.616 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8082"] +09:13:18.625 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port(s): 8082 (http) with context path '' +09:13:18.632 logback [main] INFO com.dudu.Application - Started Application in 1.243 seconds (JVM running for 1.537) +09:13:26.930 logback [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +09:13:26.930 logback [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +09:13:26.931 logback [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +09:14:22.901 logback [main] INFO com.dudu.Application - Starting Application using Java 1.8.0_271 on smart-PC with PID 2645 (/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes started by smart in /media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1) +09:14:22.903 logback [main] INFO com.dudu.Application - The following profiles are active: prod +09:14:23.421 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port(s): 8083 (http) +09:14:23.427 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8083"] +09:14:23.427 logback [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +09:14:23.427 logback [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.39] +09:14:23.462 logback [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +09:14:23.462 logback [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 530 ms +09:14:23.673 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8083"] +09:14:23.682 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port(s): 8083 (http) with context path '' +09:14:23.689 logback [main] INFO com.dudu.Application - Started Application in 1.136 seconds (JVM running for 1.437) +09:14:37.690 logback [http-nio-8083-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +09:14:37.690 logback [http-nio-8083-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +09:14:37.691 logback [http-nio-8083-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +09:15:48.381 logback [http-nio-8083-exec-1] WARN o.s.w.s.m.s.DefaultHandlerExceptionResolver - Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'GET' not supported] +09:16:18.886 logback [http-nio-8083-exec-10] ERROR com.dudu.controller.LearnController - 日志输出 error +09:20:56.701 logback [http-nio-8083-exec-2] ERROR com.dudu.controller.LearnController - 日志输出 error +09:22:15.729 logback [http-nio-8083-exec-10] ERROR 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.ClassCastException: org.springframework.web.servlet.mvc.ParameterizableViewController cannot be cast to org.springframework.web.method.HandlerMethod] with root cause +java.lang.ClassCastException: org.springframework.web.servlet.mvc.ParameterizableViewController cannot be cast to org.springframework.web.method.HandlerMethod + at com.dudu.interceptor.MyInterceptor.preHandle(MyInterceptor.java:24) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:961) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +09:23:30.068 logback [main] INFO com.dudu.Application - Starting Application using Java 1.8.0_271 on smart-PC with PID 15502 (/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes started by smart in /media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1) +09:23:30.070 logback [main] INFO com.dudu.Application - The following profiles are active: dev +09:23:30.600 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port(s): 8082 (http) +09:23:30.606 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8082"] +09:23:30.607 logback [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +09:23:30.607 logback [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.39] +09:23:30.644 logback [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +09:23:30.644 logback [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 542 ms +09:23:30.853 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8082"] +09:23:30.863 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port(s): 8082 (http) with context path '' +09:23:30.870 logback [main] INFO com.dudu.Application - Started Application in 1.12 seconds (JVM running for 1.393) +09:23:38.822 logback [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +09:23:38.822 logback [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +09:23:38.823 logback [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +09:23:38.839 logback [http-nio-8082-exec-1] ERROR 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.ClassCastException: org.springframework.web.servlet.mvc.ParameterizableViewController cannot be cast to org.springframework.web.method.HandlerMethod] with root cause +java.lang.ClassCastException: org.springframework.web.servlet.mvc.ParameterizableViewController cannot be cast to org.springframework.web.method.HandlerMethod + at com.dudu.interceptor.MyInterceptor.preHandle(MyInterceptor.java:24) + at org.springframework.web.servlet.HandlerExecutionChain.applyPreHandle(HandlerExecutionChain.java:148) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1056) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:961) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:898) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:626) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) + at javax.servlet.http.HttpServlet.service(HttpServlet.java:733) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:231) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:119) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:193) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:166) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:202) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:542) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:143) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:343) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:374) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:868) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1590) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) + at java.lang.Thread.run(Thread.java:748) +09:24:43.481 logback [http-nio-8082-exec-10] INFO com.dudu.controller.LearnController - 日志输出 info +09:24:43.481 logback [http-nio-8082-exec-10] WARN com.dudu.controller.LearnController - 日志输出 warn +09:24:43.482 logback [http-nio-8082-exec-10] ERROR com.dudu.controller.LearnController - 日志输出 error +09:28:38.085 logback [main] INFO com.dudu.Application - Starting Application using Java 1.8.0_271 on smart-PC with PID 22199 (/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes started by smart in /media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1) +09:28:38.087 logback [main] INFO com.dudu.Application - The following profiles are active: dev +09:28:38.593 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port(s): 8082 (http) +09:28:38.599 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8082"] +09:28:38.600 logback [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +09:28:38.600 logback [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.39] +09:28:38.637 logback [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +09:28:38.637 logback [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 520 ms +09:28:38.847 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8082"] +09:28:38.856 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port(s): 8082 (http) with context path '' +09:28:38.863 logback [main] INFO com.dudu.Application - Started Application in 1.111 seconds (JVM running for 1.413) +09:28:48.502 logback [main] INFO com.dudu.Application - Starting Application using Java 1.8.0_271 on smart-PC with PID 22519 (/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes started by smart in /media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1) +09:28:48.504 logback [main] INFO com.dudu.Application - The following profiles are active: dev +09:28:49.041 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port(s): 8082 (http) +09:28:49.046 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8082"] +09:28:49.046 logback [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +09:28:49.047 logback [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.39] +09:28:49.083 logback [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +09:28:49.084 logback [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 550 ms +09:28:49.294 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8082"] +09:28:49.303 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port(s): 8082 (http) with context path '' +09:28:49.310 logback [main] INFO com.dudu.Application - Started Application in 1.141 seconds (JVM running for 1.455) +09:29:16.029 logback [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +09:29:16.029 logback [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +09:29:16.030 logback [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 0 ms +09:29:21.519 logback [http-nio-8082-exec-3] INFO com.dudu.controller.LearnController - 日志输出 info +09:29:21.519 logback [http-nio-8082-exec-3] WARN com.dudu.controller.LearnController - 日志输出 warn +09:29:21.519 logback [http-nio-8082-exec-3] ERROR com.dudu.controller.LearnController - 日志输出 error +11:28:25.735 logback [main] INFO com.dudu.Application - Starting Application using Java 1.8.0_271 on smart-PC with PID 18215 (/media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1/target/classes started by smart in /media/smart/377F3B312C263A87/项目/SpringBootDemo/chapter7-1) +11:28:25.742 logback [main] INFO com.dudu.Application - The following profiles are active: dev +11:28:26.319 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat initialized with port(s): 8082 (http) +11:28:26.325 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Initializing ProtocolHandler ["http-nio-8082"] +11:28:26.326 logback [main] INFO o.a.catalina.core.StandardService - Starting service [Tomcat] +11:28:26.326 logback [main] INFO o.a.catalina.core.StandardEngine - Starting Servlet engine: [Apache Tomcat/9.0.39] +11:28:26.364 logback [main] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring embedded WebApplicationContext +11:28:26.364 logback [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext - Root WebApplicationContext: initialization completed in 586 ms +11:28:26.578 logback [main] INFO o.a.coyote.http11.Http11NioProtocol - Starting ProtocolHandler ["http-nio-8082"] +11:28:26.587 logback [main] INFO o.s.b.w.e.tomcat.TomcatWebServer - Tomcat started on port(s): 8082 (http) with context path '' +11:28:26.593 logback [main] INFO com.dudu.Application - Started Application in 1.392 seconds (JVM running for 1.905) +11:28:33.148 logback [http-nio-8082-exec-1] INFO o.a.c.c.C.[Tomcat].[localhost].[/] - Initializing Spring DispatcherServlet 'dispatcherServlet' +11:28:33.148 logback [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Initializing Servlet 'dispatcherServlet' +11:28:33.149 logback [http-nio-8082-exec-1] INFO o.s.web.servlet.DispatcherServlet - Completed initialization in 1 ms +11:29:09.380 logback [http-nio-8082-exec-4] INFO com.dudu.controller.LearnController - 日志输出 info +11:29:09.380 logback [http-nio-8082-exec-4] WARN com.dudu.controller.LearnController - 日志输出 warn +11:29:09.380 logback [http-nio-8082-exec-4] ERROR com.dudu.controller.LearnController - 日志输出 error diff --git a/chapter7-1/pom.xml b/chapter7-1/pom.xml old mode 100644 new mode 100755 index 1e0eeee..5e5e995 --- a/chapter7-1/pom.xml +++ b/chapter7-1/pom.xml @@ -14,7 +14,7 @@ org.springframework.boot spring-boot-starter-parent - 1.5.2.RELEASE + 2.4.0 @@ -22,6 +22,8 @@ UTF-8 UTF-8 1.8 + 1.7.21 + 1.1.7 @@ -35,6 +37,55 @@ spring-boot-starter-test test + + + org.springframework.boot + spring-boot-starter + + + + org.springframework.boot + spring-boot-starter-web + + + + junit + junit + test + + + + org.springframework + spring-web + 5.3.1 + + + + org.springframework + spring-webmvc + 5.3.1 + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + log4j-over-slf4j + ${slf4j.version} + + + ch.qos.logback + logback-core + ${logback.version} + + + ch.qos.logback + logback-classic + ${logback.version} + diff --git a/chapter7-1/src/main/java/com/dudu/config/MyWebMvcConfigurerAdapter.java b/chapter7-1/src/main/java/com/dudu/config/MyWebMvcConfigurationSupport.java old mode 100644 new mode 100755 similarity index 66% rename from chapter7-1/src/main/java/com/dudu/config/MyWebMvcConfigurerAdapter.java rename to chapter7-1/src/main/java/com/dudu/config/MyWebMvcConfigurationSupport.java index 40703c4..f9a1b02 --- a/chapter7-1/src/main/java/com/dudu/config/MyWebMvcConfigurerAdapter.java +++ b/chapter7-1/src/main/java/com/dudu/config/MyWebMvcConfigurationSupport.java @@ -1,29 +1,37 @@ package com.dudu.config; import com.dudu.interceptor.MyInterceptor; +import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.ViewControllerRegistry; -import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; +//import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; +import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; /** * Created by tengj on 2017/3/13. */ @Configuration -public class MyWebMvcConfigurerAdapter extends WebMvcConfigurerAdapter { +class MyWebMvcConfigurationSupport extends WebMvcConfigurationSupport { + @Autowired + MyInterceptor myInterceptor; + private static final String[] CLASSPATH_RESOURCE_LOCATIONS = { + //"classpath:/META-INF/resources/", "classpath:/resources/", + "classpath:/static/", "classpath:/public/"}; /** * 配置静态访问资源 + * * @param registry */ @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { //自定义项目内目录 - //registry.addResourceHandler("/my/**").addResourceLocations("classpath:/my/"); + registry.addResourceHandler("/**").addResourceLocations(CLASSPATH_RESOURCE_LOCATIONS); //指向外部目录 - registry.addResourceHandler("/my/**").addResourceLocations("file:E:/my/"); + //registry.addResourceHandler("/my/**").addResourceLocations("file:E:/my/"); super.addResourceHandlers(registry); } @@ -36,18 +44,20 @@ public void addResourceHandlers(ResourceHandlerRegistry registry) { @Override public void addViewControllers(ViewControllerRegistry registry) { registry.addViewController("/toLogin").setViewName("login"); + registry.addViewController("/hi").setViewName("login"); super.addViewControllers(registry); } /** * 拦截器 + * * @param registry */ @Override public void addInterceptors(InterceptorRegistry registry) { // addPathPatterns 用于添加拦截规则 // excludePathPatterns 用户排除拦截 - registry.addInterceptor(new MyInterceptor()).addPathPatterns("/**").excludePathPatterns("/toLogin","/login"); + registry.addInterceptor(myInterceptor).addPathPatterns("/**").excludePathPatterns("/toLogin", "/login"); super.addInterceptors(registry); } } diff --git a/chapter7-1/src/main/java/com/dudu/interceptor/MyInterceptor.java b/chapter7-1/src/main/java/com/dudu/interceptor/MyInterceptor.java old mode 100644 new mode 100755 index 4b59e00..6cf1074 --- a/chapter7-1/src/main/java/com/dudu/interceptor/MyInterceptor.java +++ b/chapter7-1/src/main/java/com/dudu/interceptor/MyInterceptor.java @@ -1,6 +1,7 @@ package com.dudu.interceptor; import com.dudu.domain.User; +import org.springframework.stereotype.Component; import org.springframework.web.method.HandlerMethod; import org.springframework.web.servlet.HandlerInterceptor; import org.springframework.web.servlet.ModelAndView; @@ -12,6 +13,7 @@ /** * Created by tengj on 2017/3/29. */ +@Component public class MyInterceptor implements HandlerInterceptor { @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { diff --git a/chapter7-1/src/main/resources/application-dev.properties b/chapter7-1/src/main/resources/application-dev.properties new file mode 100755 index 0000000..0442c2d --- /dev/null +++ b/chapter7-1/src/main/resources/application-dev.properties @@ -0,0 +1,4 @@ +#debug=true +server.port=8082 +#logging.path=E:\\test +#logging.file=my.log \ No newline at end of file diff --git a/chapter7-1/src/main/resources/application-prod.properties b/chapter7-1/src/main/resources/application-prod.properties new file mode 100755 index 0000000..d3b7e49 --- /dev/null +++ b/chapter7-1/src/main/resources/application-prod.properties @@ -0,0 +1,4 @@ +#debug=true +server.port=8083 +#logging.path=E:\\test +#logging.file=my.log \ No newline at end of file diff --git a/chapter7-1/src/main/resources/application-test.properties b/chapter7-1/src/main/resources/application-test.properties new file mode 100755 index 0000000..4ba9632 --- /dev/null +++ b/chapter7-1/src/main/resources/application-test.properties @@ -0,0 +1,4 @@ +#debug=true +server.port=8081 +#logging.path=E:\\test +#logging.file=my.log \ No newline at end of file diff --git a/chapter7-1/src/main/resources/application.properties b/chapter7-1/src/main/resources/application.properties old mode 100644 new mode 100755 index d496539..054f5f2 --- a/chapter7-1/src/main/resources/application.properties +++ b/chapter7-1/src/main/resources/application.properties @@ -1,5 +1,4 @@ #debug=true - - +spring.profiles.active=dev #logging.path=E:\\test #logging.file=my.log \ No newline at end of file diff --git a/chapter7-1/src/main/resources/logback-spring.xml b/chapter7-1/src/main/resources/logback-spring.xml old mode 100644 new mode 100755 index a3f57dd..36e430e --- a/chapter7-1/src/main/resources/logback-spring.xml +++ b/chapter7-1/src/main/resources/logback-spring.xml @@ -1,7 +1,7 @@ logback - + @@ -22,6 +22,8 @@ UTF-8 UTF-8 1.8 + 1.7.21 + 1.1.7 @@ -40,7 +42,7 @@ com.alibaba druid - 1.0.19 + 1.1.20 @@ -49,6 +51,16 @@ test + + org.springframework.boot + spring-boot-starter-web + + + + org.springframework.boot + spring-boot-starter + + com.alibaba fastjson @@ -60,6 +72,44 @@ commons-lang3 3.3 + + + junit + junit + + + + org.springframework + spring-web + 5.3.1 + + + + org.springframework + spring-webmvc + 5.3.1 + + + + org.slf4j + slf4j-api + ${slf4j.version} + + + org.slf4j + log4j-over-slf4j + ${slf4j.version} + + + ch.qos.logback + logback-core + ${logback.version} + + + ch.qos.logback + logback-classic + ${logback.version} + diff --git a/chapter8/src/main/java/com/dudu/config/CorsFilter.java b/chapter8/src/main/java/com/dudu/config/CorsFilter.java new file mode 100755 index 0000000..5df035a --- /dev/null +++ b/chapter8/src/main/java/com/dudu/config/CorsFilter.java @@ -0,0 +1,23 @@ +package com.dudu.config; + +import org.springframework.context.annotation.Configuration; + +import javax.servlet.*; +import javax.servlet.annotation.WebFilter; +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; + +@WebFilter(filterName = "CorsFilter ") +@Configuration +public class CorsFilter implements Filter { + @Override + public void doFilter(ServletRequest req, ServletResponse res, FilterChain chain) throws IOException, ServletException { + HttpServletResponse response = (HttpServletResponse) res; + response.setHeader("Access-Control-Allow-Origin","*"); // 允许的来源 + response.setHeader("Access-Control-Allow-Credentials", "true"); // 是否允许证书 + response.setHeader("Access-Control-Allow-Methods", "POST, GET, PATCH, DELETE, PUT"); // 允许的请求方式 + response.setHeader("Access-Control-Max-Age", "3600"); // 预检请求的有效期 + response.setHeader("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept"); + chain.doFilter(req, res); + } +} diff --git a/chapter8/src/main/java/com/dudu/config/MyWebMvcConfigurerAdapter.java b/chapter8/src/main/java/com/dudu/config/MyWebMvcConfigurationSupport.java old mode 100644 new mode 100755 similarity index 76% rename from chapter8/src/main/java/com/dudu/config/MyWebMvcConfigurerAdapter.java rename to chapter8/src/main/java/com/dudu/config/MyWebMvcConfigurationSupport.java index 3762991..d8a0e8f --- a/chapter8/src/main/java/com/dudu/config/MyWebMvcConfigurerAdapter.java +++ b/chapter8/src/main/java/com/dudu/config/MyWebMvcConfigurationSupport.java @@ -4,12 +4,14 @@ import com.alibaba.fastjson.support.config.FastJsonConfig; import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter; import com.dudu.interceptor.MyInterceptor; +import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Configuration; import org.springframework.http.converter.HttpMessageConverter; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.ViewControllerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; +import org.springframework.web.servlet.config.annotation.WebMvcConfigurationSupport; import java.util.List; @@ -17,8 +19,18 @@ * Created by tengj on 2017/3/13. */ @Configuration -public class MyWebMvcConfigurerAdapter extends WebMvcConfigurerAdapter { +public class MyWebMvcConfigurationSupport extends WebMvcConfigurationSupport { + @Autowired + MyInterceptor myInterceptor; + + private static final String[] CLASSPATH_RESOURCE_LOCATIONS = { + "classpath:/META-INF/resources/", + "classpath:/resources/", + "classpath:/static/assets/", + "classpath:/static/", + "classpath:/public/" + }; /** * 配置静态访问资源 @@ -29,7 +41,7 @@ public void addResourceHandlers(ResourceHandlerRegistry registry) { //自定义项目内目录 //registry.addResourceHandler("/my/**").addResourceLocations("classpath:/my/"); //指向外部目录 - registry.addResourceHandler("/my/**").addResourceLocations("file:E:/my/"); + registry.addResourceHandler("/**").addResourceLocations(CLASSPATH_RESOURCE_LOCATIONS); super.addResourceHandlers(registry); } @@ -47,13 +59,14 @@ public void addViewControllers(ViewControllerRegistry registry) { /** * 拦截器 + * * @param registry */ @Override public void addInterceptors(InterceptorRegistry registry) { // addPathPatterns 用于添加拦截规则 // excludePathPatterns 用户排除拦截 - registry.addInterceptor(new MyInterceptor()).addPathPatterns("/**").excludePathPatterns("/toLogin","/login"); + registry.addInterceptor(myInterceptor).addPathPatterns("/**").excludePathPatterns("/toLogin", "/login", "/assets"); super.addInterceptors(registry); } diff --git a/chapter8/src/main/java/com/dudu/controller/LearnController.java b/chapter8/src/main/java/com/dudu/controller/LearnController.java old mode 100644 new mode 100755 index 401c450..a619eeb --- a/chapter8/src/main/java/com/dudu/controller/LearnController.java +++ b/chapter8/src/main/java/com/dudu/controller/LearnController.java @@ -2,7 +2,7 @@ import com.alibaba.fastjson.JSONObject; -import com.dudu.domain.LearnResouce; +import com.dudu.model.LearnResouce; import com.dudu.service.LearnService; import com.dudu.tools.Page; import com.dudu.tools.ServletUtil; @@ -10,6 +10,7 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; @@ -28,6 +29,7 @@ @RequestMapping("/learn") public class LearnController { @Autowired + @Qualifier("LearnServiceImpl") private LearnService learnService; private Logger logger = LoggerFactory.getLogger(this.getClass()); diff --git a/chapter8/src/main/java/com/dudu/controller/LoginController.java b/chapter8/src/main/java/com/dudu/controller/LoginController.java old mode 100644 new mode 100755 index 46c5f5e..0ac54f3 --- a/chapter8/src/main/java/com/dudu/controller/LoginController.java +++ b/chapter8/src/main/java/com/dudu/controller/LoginController.java @@ -1,6 +1,6 @@ package com.dudu.controller; -import com.dudu.domain.User; +import com.dudu.model.User; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.stereotype.Controller; diff --git a/chapter8/src/main/java/com/dudu/interceptor/MyInterceptor.java b/chapter8/src/main/java/com/dudu/interceptor/MyInterceptor.java old mode 100644 new mode 100755 index 4b59e00..6d662c8 --- a/chapter8/src/main/java/com/dudu/interceptor/MyInterceptor.java +++ b/chapter8/src/main/java/com/dudu/interceptor/MyInterceptor.java @@ -1,6 +1,7 @@ package com.dudu.interceptor; -import com.dudu.domain.User; +import com.dudu.model.User; +import org.springframework.stereotype.Component; import org.springframework.web.method.HandlerMethod; import org.springframework.web.servlet.HandlerInterceptor; import org.springframework.web.servlet.ModelAndView; @@ -12,6 +13,7 @@ /** * Created by tengj on 2017/3/29. */ +@Component public class MyInterceptor implements HandlerInterceptor { @Override public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { @@ -19,6 +21,9 @@ public boolean preHandle(HttpServletRequest request, HttpServletResponse respons String ip = request.getRemoteAddr(); long startTime = System.currentTimeMillis(); request.setAttribute("requestStartTime", startTime); + if (!(handler instanceof HandlerMethod)) { + return flag; + } HandlerMethod handlerMethod = (HandlerMethod) handler; Method method = handlerMethod.getMethod(); System.out.println("用户:"+ip+",访问目标:"+method.getDeclaringClass().getName() + "." + method.getName()); @@ -35,18 +40,20 @@ public boolean preHandle(HttpServletRequest request, HttpServletResponse respons @Override public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView) throws Exception { - HandlerMethod handlerMethod = (HandlerMethod) handler; - Method method = handlerMethod.getMethod(); - long startTime = (Long) request.getAttribute("requestStartTime"); - long endTime = System.currentTimeMillis(); - long executeTime = endTime - startTime; - // 打印方法执行时间 - if (executeTime > 1000) { - System.out.println("[" + method.getDeclaringClass().getName() + "." + method.getName() + "] 执行耗时 : " - + executeTime + "ms"); - } else { - System.out.println("[" + method.getDeclaringClass().getSimpleName() + "." + method.getName() + "] 执行耗时 : " - + executeTime + "ms"); + if (handler instanceof HandlerMethod) { + HandlerMethod handlerMethod = (HandlerMethod) handler; + Method method = handlerMethod.getMethod(); + long startTime = (Long) request.getAttribute("requestStartTime"); + long endTime = System.currentTimeMillis(); + long executeTime = endTime - startTime; + // 打印方法执行时间 + if (executeTime > 1000) { + System.out.println("[" + method.getDeclaringClass().getName() + "." + method.getName() + "] 执行耗时 : " + + executeTime + "ms"); + } else { + System.out.println("[" + method.getDeclaringClass().getSimpleName() + "." + method.getName() + "] 执行耗时 : " + + executeTime + "ms"); + } } } diff --git a/chapter8/src/main/java/com/dudu/domain/LearnResouce.java b/chapter8/src/main/java/com/dudu/model/LearnResouce.java similarity index 96% rename from chapter8/src/main/java/com/dudu/domain/LearnResouce.java rename to chapter8/src/main/java/com/dudu/model/LearnResouce.java index b4b8c4d..f97e2d0 100644 --- a/chapter8/src/main/java/com/dudu/domain/LearnResouce.java +++ b/chapter8/src/main/java/com/dudu/model/LearnResouce.java @@ -1,4 +1,4 @@ -package com.dudu.domain; +package com.dudu.model; /** * Created by tengj on 2017/3/7. diff --git a/chapter8/src/main/java/com/dudu/domain/User.java b/chapter8/src/main/java/com/dudu/model/User.java similarity index 95% rename from chapter8/src/main/java/com/dudu/domain/User.java rename to chapter8/src/main/java/com/dudu/model/User.java index cc591fc..58d4a19 100644 --- a/chapter8/src/main/java/com/dudu/domain/User.java +++ b/chapter8/src/main/java/com/dudu/model/User.java @@ -1,4 +1,4 @@ -package com.dudu.domain; +package com.dudu.model; /** * Created by tengj on 2017/3/29. diff --git a/chapter8/src/main/java/com/dudu/dao/LearnDao.java b/chapter8/src/main/java/com/dudu/repository/LearnDao.java similarity index 84% rename from chapter8/src/main/java/com/dudu/dao/LearnDao.java rename to chapter8/src/main/java/com/dudu/repository/LearnDao.java index 1b02916..108a5bf 100644 --- a/chapter8/src/main/java/com/dudu/dao/LearnDao.java +++ b/chapter8/src/main/java/com/dudu/repository/LearnDao.java @@ -1,6 +1,6 @@ -package com.dudu.dao; +package com.dudu.repository; -import com.dudu.domain.LearnResouce; +import com.dudu.model.LearnResouce; import com.dudu.tools.Page; import java.util.Map; diff --git a/chapter8/src/main/java/com/dudu/dao/impl/LearnDaoImpl.java b/chapter8/src/main/java/com/dudu/repository/impl/LearnDaoImpl.java similarity index 94% rename from chapter8/src/main/java/com/dudu/dao/impl/LearnDaoImpl.java rename to chapter8/src/main/java/com/dudu/repository/impl/LearnDaoImpl.java index 2331361..46c87fc 100644 --- a/chapter8/src/main/java/com/dudu/dao/impl/LearnDaoImpl.java +++ b/chapter8/src/main/java/com/dudu/repository/impl/LearnDaoImpl.java @@ -1,7 +1,7 @@ -package com.dudu.dao.impl; +package com.dudu.repository.impl; -import com.dudu.dao.LearnDao; -import com.dudu.domain.LearnResouce; +import com.dudu.repository.LearnDao; +import com.dudu.model.LearnResouce; import com.dudu.tools.Page; import com.dudu.tools.StringUtil; import org.springframework.beans.factory.annotation.Autowired; @@ -15,7 +15,7 @@ /** * Created by tengj on 2017/4/8. */ -@Repository +@Repository("LearnDaoImpl") public class LearnDaoImpl implements LearnDao{ @Autowired private JdbcTemplate jdbcTemplate; diff --git a/chapter8/src/main/java/com/dudu/service/LearnService.java b/chapter8/src/main/java/com/dudu/service/LearnService.java old mode 100644 new mode 100755 index 6a7edda..4036538 --- a/chapter8/src/main/java/com/dudu/service/LearnService.java +++ b/chapter8/src/main/java/com/dudu/service/LearnService.java @@ -1,6 +1,6 @@ package com.dudu.service; -import com.dudu.domain.LearnResouce; +import com.dudu.model.LearnResouce; import com.dudu.tools.Page; import java.util.Map; diff --git a/chapter8/src/main/java/com/dudu/service/impl/LearnServiceImpl.java b/chapter8/src/main/java/com/dudu/service/impl/LearnServiceImpl.java old mode 100644 new mode 100755 index 3d84f90..c23ff32 --- a/chapter8/src/main/java/com/dudu/service/impl/LearnServiceImpl.java +++ b/chapter8/src/main/java/com/dudu/service/impl/LearnServiceImpl.java @@ -1,10 +1,11 @@ package com.dudu.service.impl; -import com.dudu.dao.LearnDao; -import com.dudu.domain.LearnResouce; +import com.dudu.repository.LearnDao; +import com.dudu.model.LearnResouce; import com.dudu.service.LearnService; import com.dudu.tools.Page; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.stereotype.Service; import java.util.Map; @@ -12,10 +13,11 @@ /** * Created by tengj on 2017/4/7. */ -@Service +@Service("LearnServiceImpl") public class LearnServiceImpl implements LearnService { @Autowired + @Qualifier("LearnDaoImpl") LearnDao learnDao; @Override public int add(LearnResouce learnResouce) { diff --git a/chapter8/src/main/resources/application.properties b/chapter8/src/main/resources/application.properties old mode 100644 new mode 100755 index 6a98b99..5c1c0bc --- a/chapter8/src/main/resources/application.properties +++ b/chapter8/src/main/resources/application.properties @@ -1,6 +1,8 @@ #debug=true +server.port=8080 spring.thymeleaf.cache=false -spring.datasource.url = jdbc:mysql://localhost:3306/spring?useUnicode=true&characterEncoding=utf-8 +spring.datasource.url = jdbc:mysql://172.16.2.47:13306/spring?useUnicode=true&characterEncoding=utf-8 spring.datasource.username = root -spring.datasource.password = root -spring.datasource.driver-class-name = com.mysql.jdbc.Driver +spring.datasource.password = 123456 +#spring.datasource.driver-class-name = com.mysql.jdbc.Driver +spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver diff --git a/chapter8/src/main/resources/logback-spring.xml b/chapter8/src/main/resources/logback-spring.xml old mode 100644 new mode 100755 index b6310b0..88a660f --- a/chapter8/src/main/resources/logback-spring.xml +++ b/chapter8/src/main/resources/logback-spring.xml @@ -1,7 +1,7 @@ logback - + + + + +
+

错误码:[[${status}]]

+

信息:[[${message}]]

+

时间:[[${#dates.format(timestamp,'yyyy-MM-dd hh:mm:ss ')}]]

+

请求路径:[[${path}]]

+
+ + + \ No newline at end of file diff --git a/chapter8/src/main/resources/static/error/5xx.html b/chapter8/src/main/resources/static/error/5xx.html new file mode 100755 index 0000000..4546ac6 --- /dev/null +++ b/chapter8/src/main/resources/static/error/5xx.html @@ -0,0 +1,19 @@ + + + + + + [[${status}]] + + + + +
+

错误码:[[${status}]]

+

信息:[[${message}]]

+

时间:[[${#dates.format(timestamp,'yyyy-MM-dd hh:mm:ss ')}]]

+

请求路径:[[${path}]]

+
+ + + \ No newline at end of file diff --git a/chapter8/src/main/resources/templates/error.html b/chapter8/src/main/resources/templates/error.html new file mode 100755 index 0000000..4546ac6 --- /dev/null +++ b/chapter8/src/main/resources/templates/error.html @@ -0,0 +1,19 @@ + + + + + + [[${status}]] + + + + +
+

错误码:[[${status}]]

+

信息:[[${message}]]

+

时间:[[${#dates.format(timestamp,'yyyy-MM-dd hh:mm:ss ')}]]

+

请求路径:[[${path}]]

+
+ + + \ No newline at end of file