关注公众号:
参考网页
spring boot 启动后。访问http://localhost:8080/greeting 结果返回:
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.Mon Jan 14 23:10:29 HKT 2019
There was an unexpected error (type=Not Found, status=404).
No message available
一路断点打过去,看代码,确实没有找到/greeting的访问路径。可我明明配置了Controller 类了。
google了一下,原来是: 光是在Controller类里面声明 @RequestMapping("/greeting") 是不够的。还需要在启动类里面配置要扫描的包的位置。
如果不配置,就只会默认扫描配置的那个类的包路径下的class。
解决方法
加上注解
@ComponentScan(basePackages = “com.huyouxiao.wait”)
basePackeges的值就是你的controller类的包名。或者更上一级。目的是包含所有的java类。
package com.huyouxiao.wait.config;import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.ComponentScan;@SpringBootApplication
@ComponentScan(basePackages = "com.huyouxiao.wait")
public class Application {public static void main(String[] args) {SpringApplication.run(Application.class, args);}
}```