1 新建项目
新建项目,选择Spring Initializr
一路默认,然后选择web
2 代码修改
在java目录下新建controller包,在controller包下新建SampleController类
代码为
package hello;
import org.springframework.boot.*;
import org.springframework.boot.autoconfigure.*;
import org.springframework.stereotype.*;
import org.springframework.web.bind.annotation.*;
@Controller
@EnableAutoConfiguration
public class SampleController {
@RequestMapping("/")
@ResponseBody
String home() {
return "Hello World!";
}
public static void main(String[] args) throws Exception {
SpringApplication.run(SampleController.class, args);
}
}
修改配置文件,设置监听端口(默认880)
右键运行
在浏览器登录http://127.0.0.1:9090
3 Whitelabel Error Page
出现
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Tue Jul 02 11:53:27 CST 2019
There was an unexpected error (type=Not Found, status=404).
No message available
很像是没有读到你要访问的地址。
原因是【Application启动类放的位置不对】要将Application放在最外层,也就是要包含所有子包。
比如你的groupId是com.example.demo,子包就是所谓的com.example.demo.xxx,所以要将Application放在com.example.demo包下。
请参考以下结论:spring-boot会自动加载启动类所在包下及其子包下的所有组件.