springboot运行Whitelabel Error Page错误怎么办?
我的目录是正确的,controller代码如下:
import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; @Controller public class HelloController { @RequestMapping("/hello") public String index() { return "Hello World1"; } }
网友回复
你这少了@ResponseBody,完整如下:
import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.Requ...
点击查看剩余70%