Spring Boot .html文件无法解析

时间:2017-06-28 00:35:00

标签: html spring spring-boot

我有一个春季启动应用程序 -

我有一个控制器 -

@Controller("CWOController")
@RequestMapping(value = "/cworequest")
public class CWOController {


    @RequestMapping(value = {"/index.html"}, method = {RequestMethod.GET})
    public String getCwoIdSearchForm(Model model) {
        model.addAttribute("cwoRequestForm", new CWORequest());
        return "index";
    }

这适用于网址 - > http://localhost:8080/cworequest/

但我需要 - > http://localhost:8080/cworequest/index.html映射到上面的GET。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

使用映射/添加另一个默认方法并返回错误或其他任何内容。