Spring Boot JSP 404

后端 未结 14 1449
陌清茗
陌清茗 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:33

    my issue was Spring vesrion : I found that since 1.4.3 version and above stops supporting the embedded JSPs . So I change version to 1.4.1 , it's worked for me.

    an other thing take off :

    
        org.springframework.boot
        spring-boot-starter-thymeleaf
    
    

    it will not work with it .

提交回复
热议问题