Spring Boot - where to place the jsp files

前端 未结 8 2186
无人及你
无人及你 2020-12-20 15:55

I am trying to develop a new Spring boot application using MVC as a first step to move my existing Spring MVC application to Spring boot.

However, I am facing an is

8条回答
  •  死守一世寂寞
    2020-12-20 16:25

    The issue was with the version of jar spring-boot-starter-parent. For some reason this doesn't work with the version 1.5.3 RELEASE. It works until version 1.5.2 RELEASE.

    I have updated the pom.xml's parent tag as below:

    
        org.springframework.boot
        spring-boot-starter-parent
        1.5.2.RELEASE
         
    
    

提交回复
热议问题