Spring Boot JSP 404

后端 未结 14 1450
陌清茗
陌清茗 2020-11-28 07:17

I\'m trying to add a jsp page in my Spring Boot service. My problem is that every time I try to go to that page I have this:

Whitelabel Error Page

14条回答
  •  一生所求
    2020-11-28 07:35

    In newer versions of Spring, following needs to be put in application.properties file:

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

    Also, JSP files need to be put under src/main/resources/META-INF/resources/WEB-INF/jsp

提交回复
热议问题