springboot 项目整合 jsp

该文章基于 创建简单的springboot项目 

1.添加依赖需要

        
			org.springframework.boot
			spring-boot-starter-tomcat
		
		
			org.apache.tomcat.embed
			tomcat-embed-jasper
		

jsp标签库(不使用可以不用加该依赖包)

        
			javax.servlet
			jstl
		
		
			javax.servlet
			javax.servlet-api
			provided
		
		
			org.springframework.boot
			spring-boot-starter-test
			test
		

2.新建测试用的index.jsp页面

<%@ page contentType="text/html;charset=UTF-8" language="java" %>


    Title


        Holle Woeld!!

springboot 项目整合 jsp_第1张图片

3.新建web.xml配置



4.application.property

#applicatioin.properties内容如下

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

5.注掉@ResponseBody

springboot 项目整合 jsp_第2张图片

6.访问页面,请求成功

springboot 项目整合 jsp_第3张图片

 

 

你可能感兴趣的:(springboot,整合Jsp,后台)