SpringBoot访问jsp页面踩坑

SpringBoot访问jsp页面

  • SpringBoot访问jsp页面
  • 整合步骤
    • 1 加入JSP依赖
    • 2 写个Web配置类
    • 3 切记放JSP的根目录必须命名为webapp
    • 4.完事

SpringBoot访问jsp页面

IDEA SpringBoot 整合JSP
按照官网的说法配置类加上这行方法就完事了,但是有坑,切记放JSP的根目录必须命名为webapp,我试了web和webroot都是不行的。

整合步骤

1 加入JSP依赖



   javax.servlet
   jstl



   org.apache.tomcat.embed
   tomcat-embed-jasper
   provided

2 写个Web配置类


@Configuration
@EnableWebMvc
public class WebConfig implements WebMvcConfigurer {

    @Override
    public void configureViewResolvers(ViewResolverRegistry registry) {
        registry.enableContentNegotiation(new MappingJackson2JsonView());
        registry.jsp();
    }

   
}

3 切记放JSP的根目录必须命名为webapp

在这里插入图片描述

4.完事

SpringBoot访问jsp页面踩坑_第1张图片

你可能感兴趣的:(SpringBoot访问jsp页面踩坑)