Spring boot downloading jsp file

后端 未结 4 2010
我寻月下人不归
我寻月下人不归 2021-01-18 04:05

I am using spring boot simple application for displaying a JSP. However instead of rendering the JSP the page gets downloaded in the browser. Please suggest?

4条回答
  •  南笙
    南笙 (楼主)
    2021-01-18 04:44

    Within Maven dependencies check the tomcat-embed version and find the relevant tomcat-jasper version dependency in the maven central. This jar is required for JSP compilation. Since it is not compiled it comes as a downloadable.

        
            org.apache.tomcat
            tomcat-jasper
            9.0.19
        
    

    My embed tomcat version was 9.0.19, and I got the jasper relevant for that version.

提交回复
热议问题