Whitelabel Error Page错误如何解决?
main.java:
package cn.lai.dolphinMusic;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class musicMain {
public static void main(String [] args){
SpringApplication.run(musicMain.class,args);
}
}
controller:
package cn.lai.dolphinMusic.Controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class test {
@RequestMapping("/hello")
public String sayHi(String name){
return "Hello, "+name;
}
}
application.yml:
server:
port: 8880
servlet:
context-path: /
项目可以正常启动
访问http://localhost:8880/hello?name=lai
得到的结果是:
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Wed Jun 16 11:32:35 CST 2021
There was an unexpected error (type=Not Found, status=404).
No message available
如何解决?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
控制类注解@Controller改为@RestController
你写的注解默认返回的是页面