详解Spring Boot 添加JSP支持
大体步骤:
(1)创建Mavenwebproject;
(2)在pom.xml文件添加依赖;
(3)配置application.properties支持jsp
(4)编写测试Controller
(5)编写JSP页面
(6)编写启动类Application.Java
1,FreeMarker
2,Groovy
3,Thymeleaf(spring官网使用这个)
4,Velocity
5,JSP(貌似SpringBoot官方不推荐,STS创建的项目会在src/main/resources下有个templates目录,这里就是让我们放模版文件的,然后并没有生成诸如SpringMVC中的webapp目录)
不过本文还是选择大家都熟悉的JSP来举例,因为使用JSP与默认支持的模版需要特殊处理,所以拿来举例更好。
(1)创建Mavenwebproject
使用Eclipse新建一个MavenWebProject,项目取名为:
spring-boot-jsp
(2)在pom.xml文件添加依赖
4.0.0 com.example spring-boot-jsp 0.0.1-SNAPSHOT war UTF-8 org.springframework.boot spring-boot-starter-parent 1.4.0.RELEASE org.springframework.boot spring-boot-starter-web javax.servlet javax.servlet-api provided javax.servlet jstl org.springframework.boot spring-boot-starter-tomcat provided org.apache.tomcat.embed tomcat-embed-jasper provided spring-boot-jsp maven-compiler-plugin 1.8 1.8
(3)application.properties配置
上面说了spring-boot不推荐JSP,想使用JSP需要配置application.properties。
添加src/main/resources/application.properties内容:
#页面默认前缀目录 spring.mvc.view.prefix=/WEB-INF/jsp/ #响应页面默认后缀 spring.mvc.view.suffix=.jsp #自定义属性,可以在Controller中读取 application.hello=HelloAngelFromapplication
(4)编写测试Controller
packagecom.example.jsp.controller; importjava.util.Map; importorg.springframework.beans.factory.annotation.Value; importorg.springframework.stereotype.Controller; importorg.springframework.web.bind.annotation.RequestMapping; @Controller publicclassHelloController{ //从application中读取配置,如取不到默认值为hellojack @Value("${application.hello:hellojack}") privateStringhello; @RequestMapping("/helloJsp") publicStringhelloJsp(Mapmap){ System.out.println("HelloController.helloJsp().hello="+hello); map.put("hello",hello); return"helloJsp"; } }
(5)编写JSP页面
在src/main下面创建webapp/WEB-INF/jsp目录用来存放我们的jsp页面:helloJsp.jsp
<%@pagelanguage="java"contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"%>Inserttitlehere helloJsp
${hello}
6)编写启动类
编写Application.java启动类:
packagecom.example; importorg.springframework.boot.SpringApplication; importorg.springframework.boot.autoconfigure.SpringBootApplication; importorg.springframework.boot.web.support.SpringBootServletInitializer; //importorg.springframework.boot.context.web.SpringBootServletInitializer; @SpringBootApplication publicclassApplicationextendsSpringBootServletInitializer{ publicstaticvoidmain(String[]args){ SpringApplication.run(Application.class,args); } }
右键RunAs JavaApplication访问:http://127.0.0.1:8080/helloJsp可以访问到:
helloJsp
HelloAngelFromapplication
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持毛票票。