关于springboot访问webapp目录~~~坑

1、在webapp目前下见WEB-INF目录

关于springboot访问webapp目录~~~坑_第1张图片

but,通过如下配置访问不到,心中一万只咩咩羊……

spring.mvc.view.prefix=/WEB-INF/page/
spring.mvc.view.suffix=.html

解决办法……不要WEB-INF目录就对了(把WEB-INF下的page,直接移动到webapp目录下)

关于springboot访问webapp目录~~~坑_第2张图片

修改配置

spring.mvc.view.prefix=/page/
spring.mvc.view.suffix=.html

…………特么,就能访问了!!


提醒:不加thymeleaf这个配置文件(加了页面会默认映射到resource的templates目录)


    org.springframework.boot
    spring-boot-starter-thymeleaf
我也不知道为啥……反正浪费不少时间,





你可能感兴趣的:(java)