在我的Spring Boot应用程序上继续收到白标错误吗?

时间:2019-02-05 14:23:50

标签: java spring-boot spring-mvc gradle

这是我的控制器类

 import org.springframework.stereotype.Controller;
 Import org.springframework.ui.Model;
 import org.springframework.web.bind.annotation.RequestMapping;
 import org.springframework.web.bind.annotation.RequestParam;

@Controller
public class Place {


@RequestMapping(value="/chooseaplace")
public String place(Model model) {
    model.addAttribute("choose","place");
    return "place";

}}

我已经整理了4个小时但还是失败了,是什么错误?

when I run my application what happens is I get a message like this 

Whitelabel错误页面

此应用程序没有针对/ error的显式映射,因此您将其视为备用。

2019年2月5日星期二14:24:21 发生意外错误(类型=未找到,状态= 404)。 没有可用消息

我希望页面显示一条简单的消息,但是它不起作用?

1 个答案:

答案 0 :(得分:0)

好像您在spring会寻找资源的地方没有资源place.html。

验证打包的战争中src / main / resources / static或src / main / resources / public目录中是否有资源。