Thymeleaf和Spring View解析器在服务器上运行时一起工作,但在作为Spring Boot应用程序运行时却不能一起工作

时间:2018-10-11 09:55:56

标签: spring-boot thymeleaf

配置属性为:

spring.mvc.view.prefix=/WEB-INF/
spring.mvc.view.suffix=.jsp

spring.thymeleaf.view-names:thymeleaf/*

呈现 html 页面的代码为:

@GetMapping("/")
public String getIndex() {

    return "thymeleaf/index";
}

要呈现 JSP 页面代码,这里的首页是jsp。

@GetMapping("/form2")
public String getform2() {
    return "home";
}

正在调用控制器,并且该错误在浏览器中显示:

  

Whitelabel错误页面此应用程序没有针对   /错误,因此您将其视为备用。

     

星期五10月12日10:34:57 IST 2018发生意外错误(type = Not   找到,状态为404)。没有可用消息

如果问题不清楚,请告诉我。 谢谢

0 个答案:

没有答案