NutzCN Logo
问答 SpringBoot 打成 jar包后 配置的FileSqlManager 失效
发布于 2710天前 作者 firenut 4029 次浏览 复制 上一个帖子 下一个帖子
标签: spring
@Configuration
@Repository("dao")
public class TestDao extends NutDao {

    private DataSource hikariDataSource;

    private SqlManager fileSqlManager;

    @Autowired
    public void setHikariDataSource(DataSource hikariDataSource) {
        this.hikariDataSource = hikariDataSource;
        setDataSource(hikariDataSource);
    }

    @Autowired
    public void setFileSqlManager() {
        this.fileSqlManager = new FileSqlManager(
                "sqls/test.sql"
        );
        setSqlManager(fileSqlManager);
    }
}

java -jar test.jar

2016-11-18 16:13:44.612  INFO 48184 --- [           main] o.n.resource.impl.ErrorResourceLocation  : [loc=/Users/firenut/project/source/Test-Web/target/web-1.0.jar!/BOOT-INF/lib/nutz-1.r.58.jar]not exist

2016-11-18 15:05:06.832 DEBUG 46435 --- [           main] org.nutz.dao.impl.DaoSupport             : SqlManager Sql count=0

其实freemarker 打成jar后也会有这个问题 然后我直接

freemarker:
    prefer-file-system-access: false

就好了 请问 有没有类似于freemarker 的糖 或者其他的解决方法?

7 回复

启动失败还是怎样?如果是报错就贴完整报错信息

SpringBoot 配置

@SpringBootApplication
public class Application
{
    public static void main( String[] args )
    {
        StandardEnvironment environment = new StandardEnvironment();

        new SpringApplicationBuilder()
            .sources(Application.class)
            .environment(environment)
           // .resourceLoader(new JarResourceLoader())
            .registerShutdownHook(true)
            .build()
            .run(args);
    }
}

NutDao 配置

@Configuration
@Repository("dao")
public class GFDao extends NutDao {

    private DataSource hikariDataSource;

    private SqlManager fileSqlManager;

    @Autowired
    private ResourceLoader resourceLoader;

    @Autowired
    public void setHikariDataSource(DataSource hikariDataSource) {
        this.hikariDataSource = hikariDataSource;
        setDataSource(hikariDataSource);
    }

    @Autowired
    public void setFileSqlManager() {


        this.fileSqlManager = new FileSqlManager("/sqls/aaa.sql");


        setSqlManager(fileSqlManager);
    }

}

文件目录

src
  - main
    - java
    - resources
       - sqls
           aaa.sql

启动
java -jar web.jar
信息:

这里面没有扫到 sql文件

2016-11-18 16:27:26.970 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : SqlManager Sql count=0

以下完整信息 没有异常,我发的异常信息 是我自己配置了一下 SpringBoot的 ResourceLoader

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v1.4.0.RELEASE)

2016-11-18 16:27:23.677 DEBUG 48471 --- [           main] o.s.w.c.s.StandardServletEnvironment     : Adding [servletConfigInitParams] PropertySource with lowest search precedence
2016-11-18 16:27:23.682 DEBUG 48471 --- [           main] o.s.w.c.s.StandardServletEnvironment     : Adding [servletContextInitParams] PropertySource with lowest search precedence
2016-11-18 16:27:23.694 DEBUG 48471 --- [           main] o.s.w.c.s.StandardServletEnvironment     : Adding [systemProperties] PropertySource with lowest search precedence
2016-11-18 16:27:23.694 DEBUG 48471 --- [           main] o.s.w.c.s.StandardServletEnvironment     : Adding [systemEnvironment] PropertySource with lowest search precedence
2016-11-18 16:27:23.694 DEBUG 48471 --- [           main] o.s.w.c.s.StandardServletEnvironment     : Initialized StandardServletEnvironment with PropertySources [servletConfigInitParams,servletContextInitParams,systemProperties,systemEnvironment]
2016-11-18 16:27:23.769  INFO 48471 --- [           main] cn.gf.Application                    : Starting Application v1.0 on Babylon.local with PID 48471 (/Users/firenut/project/ys/gf/gf-web/source/gf-Web/target/web-1.0.jar started by firenut in /Users/firenut/project/ys/gf/gf-web/source/gf-Web)
2016-11-18 16:27:23.769  INFO 48471 --- [           main] cn.gf.Application                    : The following profiles are active: dev
2016-11-18 16:27:23.845  INFO 48471 --- [           main] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@12f40c25: startup date [Fri Nov 18 16:27:23 CST 2016]; root of context hierarchy
2016-11-18 16:27:25.828  INFO 48471 --- [           main] trationDelegate$BeanPostProcessorChecker : Bean 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration' of type [class org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration$$EnhancerBySpringCGLIB$$f006e870] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying)
2016-11-18 16:27:26.495  INFO 48471 --- [           main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2016-11-18 16:27:26.508  INFO 48471 --- [           main] o.apache.catalina.core.StandardService   : Starting service Tomcat
2016-11-18 16:27:26.510  INFO 48471 --- [           main] org.apache.catalina.core.StandardEngine  : Starting Servlet Engine: Apache Tomcat/8.5.4
2016-11-18 16:27:26.592  INFO 48471 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2016-11-18 16:27:26.593 DEBUG 48471 --- [ost-startStop-1] o.s.web.context.ContextLoader            : Published root WebApplicationContext as ServletContext attribute with name [org.springframework.web.context.WebApplicationContext.ROOT]
2016-11-18 16:27:26.593  INFO 48471 --- [ost-startStop-1] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 2750 ms
2016-11-18 16:27:26.707 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [servletConfigInitParams] PropertySource with lowest search precedence
2016-11-18 16:27:26.708 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [servletContextInitParams] PropertySource with lowest search precedence
2016-11-18 16:27:26.709 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [systemProperties] PropertySource with lowest search precedence
2016-11-18 16:27:26.709 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [systemEnvironment] PropertySource with lowest search precedence
2016-11-18 16:27:26.709 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Initialized StandardServletEnvironment with PropertySources [servletConfigInitParams,servletContextInitParams,systemProperties,systemEnvironment]
2016-11-18 16:27:26.725 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [servletConfigInitParams] PropertySource with lowest search precedence
2016-11-18 16:27:26.725 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [servletContextInitParams] PropertySource with lowest search precedence
2016-11-18 16:27:26.725 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [systemProperties] PropertySource with lowest search precedence
2016-11-18 16:27:26.725 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [systemEnvironment] PropertySource with lowest search precedence
2016-11-18 16:27:26.725 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Initialized StandardServletEnvironment with PropertySources [servletConfigInitParams,servletContextInitParams,systemProperties,systemEnvironment]
2016-11-18 16:27:26.732 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [servletConfigInitParams] PropertySource with lowest search precedence
2016-11-18 16:27:26.732 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [servletContextInitParams] PropertySource with lowest search precedence
2016-11-18 16:27:26.732 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [systemProperties] PropertySource with lowest search precedence
2016-11-18 16:27:26.732 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [systemEnvironment] PropertySource with lowest search precedence
2016-11-18 16:27:26.732 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Initialized StandardServletEnvironment with PropertySources [servletConfigInitParams,servletContextInitParams,systemProperties,systemEnvironment]
2016-11-18 16:27:26.742 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [servletConfigInitParams] PropertySource with lowest search precedence
2016-11-18 16:27:26.743 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [servletContextInitParams] PropertySource with lowest search precedence
2016-11-18 16:27:26.743 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [systemProperties] PropertySource with lowest search precedence
2016-11-18 16:27:26.743 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Adding [systemEnvironment] PropertySource with lowest search precedence
2016-11-18 16:27:26.743 DEBUG 48471 --- [ost-startStop-1] o.s.w.c.s.StandardServletEnvironment     : Initialized StandardServletEnvironment with PropertySources [servletConfigInitParams,servletContextInitParams,systemProperties,systemEnvironment]
2016-11-18 16:27:26.760  INFO 48471 --- [ost-startStop-1] o.s.b.w.servlet.ServletRegistrationBean  : Mapping servlet: 'dispatcherServlet' to [/]
2016-11-18 16:27:26.766  INFO 48471 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'characterEncodingFilter' to: [/*]
2016-11-18 16:27:26.766  INFO 48471 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'hiddenHttpMethodFilter' to: [/*]
2016-11-18 16:27:26.766  INFO 48471 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'httpPutFormContentFilter' to: [/*]
2016-11-18 16:27:26.767  INFO 48471 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'requestContextFilter' to: [/*]
2016-11-18 16:27:26.852 DEBUG 48471 --- [           main] org.nutz.dao.impl.NutDao                 : GFDao$$EnhancerBySpringCGLIB$$f919471[_selfId=0] init ...
2016-11-18 16:27:26.854  WARN 48471 --- [           main] f.a.AutowiredAnnotationBeanPostProcessor : Autowired annotation should be used on methods with parameters: public void cn.gf.web.dao.GFDao.setFileSqlManager()
2016-11-18 16:27:26.895  INFO 48471 --- [           main] o.n.resource.impl.ErrorResourceLocation  : [loc=/Users/firenut/project/ys/gf/gf-web/source/gf-Web/target/web-1.0.jar!/BOOT-INF/lib/nutz-1.r.58.jar]not exist
2016-11-18 16:27:26.970 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : SqlManager Sql count=0
2016-11-18 16:27:27.125  INFO 48471 --- [           main] org.nutz.filepool.NutFilePool            : Init file-pool by: /Users/firenut/.nutz/tmp/dao/ [200000]
2016-11-18 16:27:27.126  INFO 48471 --- [           main] org.nutz.filepool.NutFilePool            : file-pool.cursor: 0
2016-11-18 16:27:27.134 DEBUG 48471 --- [           main] org.nutz.dao.jdbc.Jdbcs                  : Jdbcs init complete
2016-11-18 16:27:27.134  INFO 48471 --- [           main] org.nutz.dao.jdbc.Jdbcs                  : Get Connection from DataSource for JdbcExpert, if I lock at here, check your database server and configure
2016-11-18 16:27:27.136  INFO 48471 --- [           main] com.zaxxer.hikari.HikariDataSource       : HikariPool-1 - Started.
2016-11-18 16:27:27.532 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : JDBC Driver --> mysql-connector-java-5.1.39 ( Revision: 3289a357af6d09ecc1a10fd3c26e95183e5790ad )
2016-11-18 16:27:27.532 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : JDBC Name   --> MySQL Connector Java
2016-11-18 16:27:27.532 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : JDBC URL    --> jdbc:mysql://localhost:3306/gf_guide
2016-11-18 16:27:27.540 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : Mysql : character_set_client=utf8
2016-11-18 16:27:27.540 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : Mysql : character_set_connection=utf8
2016-11-18 16:27:27.540 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : Mysql : character_set_database=utf8
2016-11-18 16:27:27.540 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : Mysql : character_set_filesystem=binary
2016-11-18 16:27:27.540 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : Mysql : character_set_results=
2016-11-18 16:27:27.540 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : Mysql : character_set_server=utf8
2016-11-18 16:27:27.540 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : Mysql : character_set_system=utf8
2016-11-18 16:27:27.540 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : Mysql : character_sets_dir=/usr/local/mysql-5.6.23-osx10.8-x86_64/share/charsets/
2016-11-18 16:27:27.541 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : Mysql : database=gf_guide
2016-11-18 16:27:27.541 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : Mysql : user=root@localhost
2016-11-18 16:27:27.562 DEBUG 48471 --- [           main] org.nutz.dao.impl.DaoSupport             : Database info --> MYSQL:[MySQL - 5.6.23]
2016-11-18 16:27:28.177 DEBUG 48471 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Looking for request mappings in application context: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@12f40c25: startup date [Fri Nov 18 16:27:23 CST 2016]; root of context hierarchy
2016-11-18 16:27:28.188 DEBUG 48471 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : 2 request handler methods found on class cn.gf.web.controller.HelloController: {public org.springframework.web.servlet.ModelAndView cn.gf.web.controller.HelloController.index()={[/index],methods=[GET]}, public java.lang.String cn.gf.web.controller.HelloController.hello()={[/hello],methods=[GET]}}
2016-11-18 16:27:28.189  INFO 48471 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/index],methods=[GET]}" onto public org.springframework.web.servlet.ModelAndView cn.gf.web.controller.HelloController.index()
2016-11-18 16:27:28.190  INFO 48471 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/hello],methods=[GET]}" onto public java.lang.String cn.gf.web.controller.HelloController.hello()
2016-11-18 16:27:28.190 DEBUG 48471 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : 1 request handler methods found on class springfox.documentation.swagger2.web.Swagger2Controller: {public org.springframework.http.ResponseEntity springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String)={[/v2/api-docs],methods=[GET]}}
2016-11-18 16:27:28.190  INFO 48471 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/v2/api-docs],methods=[GET]}" onto public org.springframework.http.ResponseEntity<springfox.documentation.spring.web.json.Json> springfox.documentation.swagger2.web.Swagger2Controller.getDocumentation(java.lang.String)
2016-11-18 16:27:28.192 DEBUG 48471 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : 3 request handler methods found on class springfox.documentation.swagger.web.ApiResourceController: {org.springframework.http.ResponseEntity springfox.documentation.swagger.web.ApiResourceController.swaggerResources()={[/swagger-resources]}, org.springframework.http.ResponseEntity springfox.documentation.swagger.web.ApiResourceController.uiConfiguration()={[/configuration/ui]}, org.springframework.http.ResponseEntity springfox.documentation.swagger.web.ApiResourceController.securityConfiguration()={[/configuration/security]}}
2016-11-18 16:27:28.192  INFO 48471 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/swagger-resources]}" onto org.springframework.http.ResponseEntity<java.util.List<springfox.documentation.swagger.web.SwaggerResource>> springfox.documentation.swagger.web.ApiResourceController.swaggerResources()
2016-11-18 16:27:28.193  INFO 48471 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/configuration/ui]}" onto org.springframework.http.ResponseEntity<springfox.documentation.swagger.web.UiConfiguration> springfox.documentation.swagger.web.ApiResourceController.uiConfiguration()
2016-11-18 16:27:28.194  INFO 48471 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/configuration/security]}" onto org.springframework.http.ResponseEntity<springfox.documentation.swagger.web.SecurityConfiguration> springfox.documentation.swagger.web.ApiResourceController.securityConfiguration()
2016-11-18 16:27:28.197 DEBUG 48471 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : 2 request handler methods found on class org.springframework.boot.autoconfigure.web.BasicErrorController: {public org.springframework.http.ResponseEntity org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)={[/error]}, public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)={[/error],produces=[text/html]}}
2016-11-18 16:27:28.197  INFO 48471 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error]}" onto public org.springframework.http.ResponseEntity<java.util.Map<java.lang.String, java.lang.Object>> org.springframework.boot.autoconfigure.web.BasicErrorController.error(javax.servlet.http.HttpServletRequest)
2016-11-18 16:27:28.197  INFO 48471 --- [           main] s.w.s.m.m.a.RequestMappingHandlerMapping : Mapped "{[/error],produces=[text/html]}" onto public org.springframework.web.servlet.ModelAndView org.springframework.boot.autoconfigure.web.BasicErrorController.errorHtml(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
2016-11-18 16:27:28.431  INFO 48471 --- [           main] s.w.s.m.m.a.RequestMappingHandlerAdapter : Looking for @ControllerAdvice: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@12f40c25: startup date [Fri Nov 18 16:27:23 CST 2016]; root of context hierarchy
2016-11-18 16:27:28.491 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Looking for URL mappings in application context: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@12f40c25: startup date [Fri Nov 18 16:27:23 CST 2016]; root of context hierarchy
2016-11-18 16:27:28.491 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.context.annotation.internalConfigurationAnnotationProcessor': no URL paths identified
2016-11-18 16:27:28.491 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.context.annotation.internalAutowiredAnnotationProcessor': no URL paths identified
2016-11-18 16:27:28.492 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.context.annotation.internalRequiredAnnotationProcessor': no URL paths identified
2016-11-18 16:27:28.492 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.context.annotation.internalCommonAnnotationProcessor': no URL paths identified
2016-11-18 16:27:28.492 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.context.event.internalEventListenerProcessor': no URL paths identified
2016-11-18 16:27:28.492 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.context.event.internalEventListenerFactory': no URL paths identified
2016-11-18 16:27:28.492 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'application': no URL paths identified
2016-11-18 16:27:28.492 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.internalCachingMetadataReaderFactory': no URL paths identified
2016-11-18 16:27:28.492 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importAwareProcessor': no URL paths identified
2016-11-18 16:27:28.492 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.context.annotation.ConfigurationClassPostProcessor.enhancedConfigurationProcessor': no URL paths identified
2016-11-18 16:27:28.492 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'dataSourceConfig': no URL paths identified
2016-11-18 16:27:28.492 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swagger2': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'helloController': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'dao': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swagger2ParameterNameReader': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swagger2Controller': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'licenseMapperImpl': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'modelMapperImpl': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'parameterMapperImpl': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'securityMapperImpl': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'serviceModelToSwagger2MapperImpl': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'vendorExtensionsMapperImpl': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'apiDescriptionLookup': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'apiDescriptionReader': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'apiDocumentationScanner': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'apiListingReferenceScanner': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'apiListingScanner': no URL paths identified
2016-11-18 16:27:28.493 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'apiModelReader': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'mediaTypeReader': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'apiOperationReader': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'cachingOperationNameGenerator': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'defaultOperationReader': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'defaultTagsProvider': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationDeprecatedReader': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationModelsProvider': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationParameterReader': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationParameterRequestConditionReader': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationResponseClassReader': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationTagsReader': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'responseMessagesReader': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'expandedParameterBuilder': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'modelAttributeParameterExpander': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'parameterDataTypeReader': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'parameterDefaultReader': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'parameterMultiplesReader': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'parameterNameReader': no URL paths identified
2016-11-18 16:27:28.494 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'parameterRequiredReader': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'parameterTypeReader': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'documentationPluginsBootstrapper': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'documentationPluginsManager': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'webMvcRequestHandlerProvider': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationPathDecorator': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'pathMappingDecorator': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'pathSanitizer': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'queryStringUriTemplateDecorator': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'cachingAspect': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'defaultModelProvider': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'modelDependencyProvider': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'typeNameExtractor': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'schemaPluginsManager': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'factoryMethodProvider': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'objectMapperBeanPropertyNamingStrategy': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'optimized': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'accessorsProvider': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'fieldProvider': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'apiModelBuilder': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'apiModelPropertyPropertyBuilder': no URL paths identified
2016-11-18 16:27:28.495 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'apiModelTypeNameProvider': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationAuthReader': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationHiddenReader': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationHttpMethodReader': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationImplicitParameterReader': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationImplicitParametersReader': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationNicknameIntoUniqueIdReader': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationNotesReader': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationPositionReader': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationSummaryReader': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swaggerMediaTypeReader': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swaggerOperationModelsProvider': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swaggerOperationResponseClassReader': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swaggerOperationTagsReader': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swaggerResponseMessageReader': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'vendorExtensionsReader': no URL paths identified
2016-11-18 16:27:28.496 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swaggerParameterAccessReader': no URL paths identified
2016-11-18 16:27:28.497 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swaggerParameterAllowableReader': no URL paths identified
2016-11-18 16:27:28.497 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swaggerParameterDefaultReader': no URL paths identified
2016-11-18 16:27:28.497 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swaggerParameterDescriptionReader': no URL paths identified
2016-11-18 16:27:28.497 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swaggerParameterMultiplesReader': no URL paths identified
2016-11-18 16:27:28.497 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swaggerParameterRequiredReader': no URL paths identified
2016-11-18 16:27:28.497 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swaggerExpandedParameterBuilder': no URL paths identified
2016-11-18 16:27:28.497 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'apiListingTagReader': no URL paths identified
2016-11-18 16:27:28.497 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'apiResourceController': no URL paths identified
2016-11-18 16:27:28.497 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'classOrApiAnnotationResourceGrouping': no URL paths identified
2016-11-18 16:27:28.497 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'primaryDataSource': no URL paths identified
2016-11-18 16:27:28.497 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.AutoConfigurationPackages': no URL paths identified
2016-11-18 16:27:28.497 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'springfox.documentation.schema.configuration.ModelsConfiguration': no URL paths identified
2016-11-18 16:27:28.497 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'typeResolver': no URL paths identified
2016-11-18 16:27:28.497 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'modelBuilderPluginRegistry': no URL paths identified
2016-11-18 16:27:28.497 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'modelPropertyBuilderPluginRegistry': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'typeNameProviderPluginRegistry': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'springfox.documentation.spring.web.SpringfoxWebMvcConfiguration': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'defaults': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'resourceGroupCache': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'objectMapperConfigurer': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'jsonSerializer': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'documentationPluginRegistry': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'apiListingBuilderPluginRegistry': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationBuilderPluginRegistry': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'parameterBuilderPluginRegistry': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'expandedParameterBuilderPluginRegistry': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'resourceGroupingStrategyRegistry': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'operationModelsProviderPluginRegistry': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'defaultsProviderPluginRegistry': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'pathDecoratorRegistry': no URL paths identified
2016-11-18 16:27:28.498 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.aop.config.internalAutoProxyCreator': no URL paths identified
2016-11-18 16:27:28.499 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'springfox.documentation.swagger.configuration.SwaggerCommonConfiguration': no URL paths identified
2016-11-18 16:27:28.499 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swaggerProperties': no URL paths identified
2016-11-18 16:27:28.499 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'springfox.documentation.swagger2.configuration.Swagger2DocumentationConfiguration': no URL paths identified
2016-11-18 16:27:28.499 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'swagger2Module': no URL paths identified
2016-11-18 16:27:28.499 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'createRestApi': no URL paths identified
2016-11-18 16:27:28.499 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.PropertyPlaceholderAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.499 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.condition.BeanTypeRegistry': no URL paths identified
2016-11-18 16:27:28.499 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$Jackson2ObjectMapperBuilderCustomizerConfiguration': no URL paths identified
2016-11-18 16:27:28.499 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'standardJacksonObjectMapperBuilderCustomizer': no URL paths identified
2016-11-18 16:27:28.499 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'spring.jackson-org.springframework.boot.autoconfigure.jackson.JacksonProperties': no URL paths identified
2016-11-18 16:27:28.500 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor': no URL paths identified
2016-11-18 16:27:28.500 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.context.properties.ConfigurationPropertiesBindingPostProcessor.store': no URL paths identified
2016-11-18 16:27:28.500 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperBuilderConfiguration': no URL paths identified
2016-11-18 16:27:28.500 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'jacksonObjectMapperBuilder': no URL paths identified
2016-11-18 16:27:28.500 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration$JacksonObjectMapperConfiguration': no URL paths identified
2016-11-18 16:27:28.500 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'jacksonObjectMapper': no URL paths identified
2016-11-18 16:27:28.500 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.jackson.JacksonAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.500 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'jsonComponentModule': no URL paths identified
2016-11-18 16:27:28.500 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.websocket.WebSocketAutoConfiguration$TomcatWebSocketConfiguration': no URL paths identified
2016-11-18 16:27:28.500 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'websocketContainerCustomizer': no URL paths identified
2016-11-18 16:27:28.500 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.websocket.WebSocketAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.500 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration$EmbeddedTomcat': no URL paths identified
2016-11-18 16:27:28.500 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'tomcatEmbeddedServletContainerFactory': no URL paths identified
2016-11-18 16:27:28.500 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.EmbeddedServletContainerAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.500 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'embeddedServletContainerCustomizerBeanPostProcessor': no URL paths identified
2016-11-18 16:27:28.501 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'errorPageRegistrarBeanPostProcessor': no URL paths identified
2016-11-18 16:27:28.501 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletConfiguration': no URL paths identified
2016-11-18 16:27:28.501 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'dispatcherServlet': no URL paths identified
2016-11-18 16:27:28.501 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'spring.mvc-org.springframework.boot.autoconfigure.web.WebMvcProperties': no URL paths identified
2016-11-18 16:27:28.501 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration$DispatcherServletRegistrationConfiguration': no URL paths identified
2016-11-18 16:27:28.501 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'dispatcherServletRegistration': no URL paths identified
2016-11-18 16:27:28.501 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.DispatcherServletAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.501 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration$WhitelabelErrorViewConfiguration': no URL paths identified
2016-11-18 16:27:28.501 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'error': no URL paths identified
2016-11-18 16:27:28.501 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'beanNameViewResolver': no URL paths identified
2016-11-18 16:27:28.501 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.ErrorMvcAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.501 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'errorAttributes': no URL paths identified
2016-11-18 16:27:28.501 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'basicErrorController': no URL paths identified
2016-11-18 16:27:28.501 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'errorPageCustomizer': no URL paths identified
2016-11-18 16:27:28.501 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'conventionErrorViewResolver': no URL paths identified
2016-11-18 16:27:28.502 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'preserveErrorControllerTargetClassPostProcessor': no URL paths identified
2016-11-18 16:27:28.502 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'spring.resources-org.springframework.boot.autoconfigure.web.ResourceProperties': no URL paths identified
2016-11-18 16:27:28.502 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$EnableWebMvcConfiguration': no URL paths identified
2016-11-18 16:27:28.502 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'requestMappingHandlerAdapter': no URL paths identified
2016-11-18 16:27:28.502 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'requestMappingHandlerMapping': no URL paths identified
2016-11-18 16:27:28.502 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'mvcContentNegotiationManager': no URL paths identified
2016-11-18 16:27:28.502 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'viewControllerHandlerMapping': no URL paths identified
2016-11-18 16:27:28.502 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'beanNameHandlerMapping': no URL paths identified
2016-11-18 16:27:28.502 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'resourceHandlerMapping': no URL paths identified
2016-11-18 16:27:28.502 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'mvcResourceUrlProvider': no URL paths identified
2016-11-18 16:27:28.502 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'defaultServletHandlerMapping': no URL paths identified
2016-11-18 16:27:28.502 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'mvcConversionService': no URL paths identified
2016-11-18 16:27:28.502 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'mvcValidator': no URL paths identified
2016-11-18 16:27:28.502 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'mvcPathMatcher': no URL paths identified
2016-11-18 16:27:28.503 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'mvcUrlPathHelper': no URL paths identified
2016-11-18 16:27:28.503 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'mvcUriComponentsContributor': no URL paths identified
2016-11-18 16:27:28.503 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'httpRequestHandlerAdapter': no URL paths identified
2016-11-18 16:27:28.503 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'simpleControllerHandlerAdapter': no URL paths identified
2016-11-18 16:27:28.503 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'handlerExceptionResolver': no URL paths identified
2016-11-18 16:27:28.503 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'mvcViewResolver': no URL paths identified
2016-11-18 16:27:28.503 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter$FaviconConfiguration': no URL paths identified
2016-11-18 16:27:28.503 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'faviconHandlerMapping': no URL paths identified
2016-11-18 16:27:28.503 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'faviconRequestHandler': no URL paths identified
2016-11-18 16:27:28.503 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration$WebMvcAutoConfigurationAdapter': no URL paths identified
2016-11-18 16:27:28.503 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'defaultViewResolver': no URL paths identified
2016-11-18 16:27:28.503 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'viewResolver': no URL paths identified
2016-11-18 16:27:28.503 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'requestContextFilter': no URL paths identified
2016-11-18 16:27:28.503 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.WebMvcAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.504 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'hiddenHttpMethodFilter': no URL paths identified
2016-11-18 16:27:28.504 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'httpPutFormContentFilter': no URL paths identified
2016-11-18 16:27:28.504 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.jmx.JmxAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.504 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'mbeanExporter': no URL paths identified
2016-11-18 16:27:28.504 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'objectNamingStrategy': no URL paths identified
2016-11-18 16:27:28.504 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'mbeanServer': no URL paths identified
2016-11-18 16:27:28.504 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration$JdkDynamicAutoProxyConfiguration': no URL paths identified
2016-11-18 16:27:28.504 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.aop.AopAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.504 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$HikariPoolDataSourceMetadataProviderConfiguration': no URL paths identified
2016-11-18 16:27:28.504 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'hikariPoolDataSourceMetadataProvider': no URL paths identified
2016-11-18 16:27:28.504 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration$TomcatDataSourcePoolMetadataProviderConfiguration': no URL paths identified
2016-11-18 16:27:28.505 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'tomcatPoolDataSourceMetadataProvider': no URL paths identified
2016-11-18 16:27:28.505 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.jdbc.metadata.DataSourcePoolMetadataProvidersConfiguration': no URL paths identified
2016-11-18 16:27:28.505 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.505 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'dataSourceInitializer': no URL paths identified
2016-11-18 16:27:28.505 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'spring.datasource-org.springframework.boot.autoconfigure.jdbc.DataSourceProperties': no URL paths identified
2016-11-18 16:27:28.505 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'dataSourceInitializerPostProcessor': no URL paths identified
2016-11-18 16:27:28.505 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.context.ConfigurationPropertiesAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.505 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.dao.PersistenceExceptionTranslationAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.505 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'persistenceExceptionTranslationPostProcessor': no URL paths identified
2016-11-18 16:27:28.505 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.HttpMessageConvertersAutoConfiguration$StringHttpMessageConverterConfiguration': no URL paths identified
2016-11-18 16:27:28.505 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'stringHttpMessageConverter': no URL paths identified
2016-11-18 16:27:28.505 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'spring.http.encoding-org.springframework.boot.autoconfigure.web.HttpEncodingProperties': no URL paths identified
2016-11-18 16:27:28.507 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.JacksonHttpMessageConvertersConfiguration$MappingJackson2HttpMessageConverterConfiguration': no URL paths identified
2016-11-18 16:27:28.507 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'mappingJackson2HttpMessageConverter': no URL paths identified
2016-11-18 16:27:28.508 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.JacksonHttpMessageConvertersConfiguration': no URL paths identified
2016-11-18 16:27:28.508 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.HttpMessageConvertersAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.508 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'messageConverters': no URL paths identified
2016-11-18 16:27:28.508 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration$FreeMarkerWebConfiguration': no URL paths identified
2016-11-18 16:27:28.508 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'freeMarkerConfigurer': no URL paths identified
2016-11-18 16:27:28.508 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'freeMarkerConfiguration': no URL paths identified
2016-11-18 16:27:28.508 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'freeMarkerViewResolver': no URL paths identified
2016-11-18 16:27:28.508 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.freemarker.FreeMarkerAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.508 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'spring.freemarker-org.springframework.boot.autoconfigure.freemarker.FreeMarkerProperties': no URL paths identified
2016-11-18 16:27:28.508 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration$EntityLinksConfiguration': no URL paths identified
2016-11-18 16:27:28.508 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'entityLinksPluginRegistry': no URL paths identified
2016-11-18 16:27:28.517 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'controllerEntityLinks': no URL paths identified
2016-11-18 16:27:28.518 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'delegatingEntityLinks': no URL paths identified
2016-11-18 16:27:28.518 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.hateoas.config.HateoasConfiguration': no URL paths identified
2016-11-18 16:27:28.518 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'linkRelationMessageSource': no URL paths identified
2016-11-18 16:27:28.518 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration$HypermediaConfiguration': no URL paths identified
2016-11-18 16:27:28.518 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'halObjectMapperConfigurer': no URL paths identified
2016-11-18 16:27:28.518 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name '_halObjectMapper': no URL paths identified
2016-11-18 16:27:28.518 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.hateoas.config.HypermediaSupportBeanDefinitionRegistrar$DefaultObjectMapperCustomizer#0': no URL paths identified
2016-11-18 16:27:28.518 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.hateoas.config.HypermediaSupportBeanDefinitionRegistrar$Jackson2ModuleRegisteringBeanPostProcessor#0': no URL paths identified
2016-11-18 16:27:28.518 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name '_linkDiscovererRegistry': no URL paths identified
2016-11-18 16:27:28.518 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.hateoas.LinkDiscoverers#0': no URL paths identified
2016-11-18 16:27:28.518 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'defaultRelProvider': no URL paths identified
2016-11-18 16:27:28.518 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'annotationRelProvider': no URL paths identified
2016-11-18 16:27:28.518 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'relProviderPluginRegistry': no URL paths identified
2016-11-18 16:27:28.518 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name '_relProvider': no URL paths identified
2016-11-18 16:27:28.519 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.hateoas.HypermediaHttpMessageConverterConfiguration': no URL paths identified
2016-11-18 16:27:28.519 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'halMessageConverterSupportedMediaTypeCustomizer': no URL paths identified
2016-11-18 16:27:28.519 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.hateoas.HypermediaAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.520 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'spring.hateoas-org.springframework.boot.autoconfigure.hateoas.HateoasProperties': no URL paths identified
2016-11-18 16:27:28.520 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.info.ProjectInfoAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.520 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'spring.info-org.springframework.boot.autoconfigure.info.ProjectInfoProperties': no URL paths identified
2016-11-18 16:27:28.520 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.transaction.annotation.ProxyTransactionManagementConfiguration': no URL paths identified
2016-11-18 16:27:28.521 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.transaction.config.internalTransactionAdvisor': no URL paths identified
2016-11-18 16:27:28.521 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'transactionAttributeSource': no URL paths identified
2016-11-18 16:27:28.521 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'transactionInterceptor': no URL paths identified
2016-11-18 16:27:28.521 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.transaction.config.internalTransactionalEventListenerFactory': no URL paths identified
2016-11-18 16:27:28.521 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$TransactionManagementConfiguration': no URL paths identified
2016-11-18 16:27:28.521 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration$DataSourceTransactionManagerConfiguration': no URL paths identified
2016-11-18 16:27:28.522 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'transactionManager': no URL paths identified
2016-11-18 16:27:28.522 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.jdbc.DataSourceTransactionManagerAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.522 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.jdbc.JdbcTemplateAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.522 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'jdbcTemplate': no URL paths identified
2016-11-18 16:27:28.522 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'namedParameterJdbcTemplate': no URL paths identified
2016-11-18 16:27:28.522 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.transaction.TransactionAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.522 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'transactionTemplate': no URL paths identified
2016-11-18 16:27:28.522 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.HttpEncodingAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.522 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'characterEncodingFilter': no URL paths identified
2016-11-18 16:27:28.522 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'localeCharsetMappingsCustomizer': no URL paths identified
2016-11-18 16:27:28.522 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.MultipartAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.522 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'multipartConfigElement': no URL paths identified
2016-11-18 16:27:28.522 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'multipartResolver': no URL paths identified
2016-11-18 16:27:28.522 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'spring.http.multipart-org.springframework.boot.autoconfigure.web.MultipartProperties': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.ServerPropertiesAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'serverProperties': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'duplicateServerPropertiesDetector': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.WebClientAutoConfiguration$RestTemplateConfiguration': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'restTemplateBuilder': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.boot.autoconfigure.web.WebClientAutoConfiguration': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'autoConfigurationReport': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'springApplicationArguments': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'springBootBanner': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'springBootLoggingSystem': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'environment': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'systemProperties': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'systemEnvironment': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'org.springframework.context.annotation.ConfigurationClassPostProcessor.importRegistry': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'messageSource': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'applicationEventMulticaster': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'servletContext': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'contextParameters': no URL paths identified
2016-11-18 16:27:28.523 DEBUG 48471 --- [           main] o.s.w.s.h.BeanNameUrlHandlerMapping      : Rejected bean name 'contextAttributes': no URL paths identified
2016-11-18 16:27:28.536  INFO 48471 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/webjars/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2016-11-18 16:27:28.536  INFO 48471 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2016-11-18 16:27:28.552 DEBUG 48471 --- [           main] .m.m.a.ExceptionHandlerExceptionResolver : Looking for exception mappings: org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@12f40c25: startup date [Fri Nov 18 16:27:23 CST 2016]; root of context hierarchy
2016-11-18 16:27:28.580  INFO 48471 --- [           main] o.s.w.s.handler.SimpleUrlHandlerMapping  : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2016-11-18 16:27:28.823 DEBUG 48471 --- [           main] o.s.w.s.v.f.FreeMarkerConfigurer         : File system access not preferred: using SpringTemplateLoader
2016-11-18 16:27:28.823  INFO 48471 --- [           main] o.s.ui.freemarker.SpringTemplateLoader   : SpringTemplateLoader for FreeMarker: using resource loader [org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@12f40c25: startup date [Fri Nov 18 16:27:23 CST 2016]; root of context hierarchy] and template loader path [classpath:/templates/]
2016-11-18 16:27:28.825  INFO 48471 --- [           main] o.s.w.s.v.f.FreeMarkerConfigurer         : ClassTemplateLoader for Spring macros added to FreeMarker configuration
2016-11-18 16:27:29.057  INFO 48471 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup
2016-11-18 16:27:29.059  INFO 48471 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Bean with name 'primaryDataSource' has been autodetected for JMX exposure
2016-11-18 16:27:29.068  INFO 48471 --- [           main] o.s.j.e.a.AnnotationMBeanExporter        : Located MBean 'primaryDataSource': registering with JMX server as MBean [com.zaxxer.hikari:name=primaryDataSource,type=HikariDataSource]
2016-11-18 16:27:29.080 DEBUG 48471 --- [           main] o.s.w.s.resource.ResourceUrlProvider     : Looking for resource handler mappings
2016-11-18 16:27:29.081 DEBUG 48471 --- [           main] o.s.w.s.resource.ResourceUrlProvider     : Found resource handler mapping: URL pattern="/**/favicon.ico", locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/], class path resource []], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@29215f06]
2016-11-18 16:27:29.081 DEBUG 48471 --- [           main] o.s.w.s.resource.ResourceUrlProvider     : Found resource handler mapping: URL pattern="/webjars/**", locations=[class path resource [META-INF/resources/webjars/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@59505b48]
2016-11-18 16:27:29.081 DEBUG 48471 --- [           main] o.s.w.s.resource.ResourceUrlProvider     : Found resource handler mapping: URL pattern="/**", locations=[ServletContext resource [/], class path resource [META-INF/resources/], class path resource [resources/], class path resource [static/], class path resource [public/]], resolvers=[org.springframework.web.servlet.resource.PathResourceResolver@4efac082]
2016-11-18 16:27:29.082  INFO 48471 --- [           main] d.s.w.p.DocumentationPluginsBootstrapper : Context refreshed
2016-11-18 16:27:29.118  INFO 48471 --- [           main] d.s.w.p.DocumentationPluginsBootstrapper : Found {0} custom documentation plugin(s)
2016-11-18 16:27:29.130  INFO 48471 --- [           main] s.d.s.w.s.ApiListingReferenceScanner     : Scanning for api listing references
2016-11-18 16:27:29.210  INFO 48471 --- [           main] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2016-11-18 16:27:29.217  INFO 48471 --- [           main] cn.gf.Application                    : Started Application in 6.124 seconds (JVM running for 6.865)

SpringBoot jar 后 目录

image

@wendal
发到2楼 忘了@ 了 哈哈哈

@firenut 继承一下FileSqlManager,用getClass.getClassLoader.getResource试试吧

@wendal 好的我去试试 本来想 用spring自己的方法读到sql path 然后手动 FileSqlManager.add(Reader r) 进去

现在已经可以了直接使用1.r.62版

添加回复
请先登陆
回到顶部