您的位置:首页 > 编程语言 > Java开发

spring boot: Whitelabel Error Page的解决方案

2018-03-27 15:40 585 查看
初次搭建spring cloud  项目 运行时  浏览器



主要是



最后附上官网说明http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#using-boot-structuring-your-code
[html] view plain copy14.2 Locating the main application class  
We generally recommend that you locate your main application class in a root package above other classes. The @EnableAutoConfiguration annotation is often placed on your main class, and it implicitly defines a base “search package” for certain items. For example, if you are writing a JPA application, the package of the @EnableAutoConfiguration annotated class will be used to search for @Entity items.  
  
Using a root package also allows the @ComponentScan annotation to be used without needing to specify a basePackage attribute. You can also use the @SpringBootApplication annotation if your main class is in the root package.  
  
Here is a typical layout:  
  
com  
 +- example  
     +- myproject  
         +- Application.java  
         |  
         +- domain  
         |   +- Customer.java  
         |   +- CustomerRepository.java  
         |  
         +- service  
         |   +- CustomerService.java  
         |  
         +- web  
             +- CustomerController.java  
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: