新手上路遇到的Whitelabel Error Page解決方案
代碼:
package com.example.demo.web;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class HelloController {
@RequestMapping("/hello")
public String hello() {
return "Hello Spring Boot!";
}
}
訪問localhost:8080/hello
原因:程序只加載Application.java所在包及其子包下的內容
把web包移動到如上位置,再次訪問
成功!