原文: https://howtodoinjava.com/spring-boot/spring-boot-jsp-view-example/

学习创建和配置 spring boot jsp 视图解析器,该解析器使用 JSP 模板文件渲染视图层。 本示例使用嵌入式 Tomcat 服务器运行该应用程序。

源代码结构

该应用程序中的文件作为给定的结构放置在图像中。

Spring Boot JSP 视图解析器示例 - 图1

Spring Boot 应用结构

Maven 依赖项 – pom.xml

此应用程序使用以下给定的依赖项。

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.howtodoinjava</groupId>
  5. <artifactId>spring-boot-demo</artifactId>
  6. <packaging>war</packaging>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>spring-boot-demo Maven Webapp</name>
  9. <url>http://maven.apache.org</url>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>1.5.1.RELEASE</version>
  14. </parent>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <!-- Web -->
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <!-- Tomcat Embed -->
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-tomcat</artifactId>
  28. <scope>provided</scope>
  29. </dependency>
  30. <!-- JSTL -->
  31. <dependency>
  32. <groupId>javax.servlet</groupId>
  33. <artifactId>jstl</artifactId>
  34. </dependency>
  35. <!-- To compile JSP files -->
  36. <dependency>
  37. <groupId>org.apache.tomcat.embed</groupId>
  38. <artifactId>tomcat-embed-jasper</artifactId>
  39. <scope>provided</scope>
  40. </dependency>
  41. </dependencies>
  42. </project>

Spring Boot 应用程序初始化器

产生可部署 war 文件的第一步是提供SpringBootServletInitializer子类并覆盖其configure()方法。 这利用了 Spring Framework 的 Servlet 3.0 支持,并允许您在 Servlet 容器启动应用程序时对其进行配置。

  1. package com.howtodoinjava.app.controller;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.boot.builder.SpringApplicationBuilder;
  5. import org.springframework.boot.web.support.SpringBootServletInitializer;
  6. @SpringBootApplication
  7. public class SpringBootWebApplication extends SpringBootServletInitializer {
  8. @Override
  9. protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
  10. return application.sources(SpringBootWebApplication.class);
  11. }
  12. public static void main(String[] args) throws Exception {
  13. SpringApplication.run(SpringBootWebApplication.class, args);
  14. }
  15. }

Spring 控制器

控制器类可以将方法映射到应用程序中的特定 URL。 在给定的应用程序中,它具有两个视图,即//next

  1. package com.howtodoinjava.app.controller;
  2. import java.util.Map;
  3. import org.springframework.stereotype.Controller;
  4. import org.springframework.web.bind.annotation.RequestMapping;
  5. @Controller
  6. public class IndexController {
  7. @RequestMapping("/")
  8. public String home(Map<String, Object> model) {
  9. model.put("message", "HowToDoInJava Reader !!");
  10. return "index";
  11. }
  12. @RequestMapping("/next")
  13. public String next(Map<String, Object> model) {
  14. model.put("message", "You are in new page !!");
  15. return "next";
  16. }
  17. }

Spring Boot JSP ViewResolver配置

要解决 JSP 文件的位置,可以采用两种方法。

1)在application.properties中添加条目

  1. spring.mvc.view.prefix=/WEB-INF/view/
  2. spring.mvc.view.suffix=.jsp
  3. //For detailed logging during development
  4. logging.level.org.springframework=TRACE
  5. logging.level.com=TRACE

2)配置InternalResourceViewResolver服务 JSP 页面

  1. package com.howtodoinjava.app.controller;
  2. import org.springframework.context.annotation.ComponentScan;
  3. import org.springframework.context.annotation.Configuration;
  4. import org.springframework.web.servlet.config.annotation.EnableWebMvc;
  5. import org.springframework.web.servlet.config.annotation.ViewResolverRegistry;
  6. import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
  7. import org.springframework.web.servlet.view.InternalResourceViewResolver;
  8. import org.springframework.web.servlet.view.JstlView;
  9. @Configuration
  10. @EnableWebMvc
  11. @ComponentScan
  12. public class MvcConfiguration extends WebMvcConfigurerAdapter
  13. {
  14. @Override
  15. public void configureViewResolvers(ViewResolverRegistry registry) {
  16. InternalResourceViewResolver resolver = new InternalResourceViewResolver();
  17. resolver.setPrefix("/WEB-INF/view/");
  18. resolver.setSuffix(".jsp");
  19. resolver.setViewClass(JstlView.class);
  20. registry.viewResolver(resolver);
  21. }
  22. }

JSP 文件

下面是这个 Spring Boot JSP 示例中使用的两个 JSP 文件。

index.jsp

  1. <!DOCTYPE html>
  2. <%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
  3. <html lang="en">
  4. <body>
  5. <div>
  6. <div>
  7. <h1>Spring Boot JSP Example</h1>
  8. <h2>Hello ${message}</h2>
  9. Click on this <strong><a href="next">link</a></strong> to visit another page.
  10. </div>
  11. </div>
  12. </body>
  13. </html>

next.jsp

  1. <!DOCTYPE html>
  2. <%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
  3. <html lang="en">
  4. <body>
  5. <div>
  6. <div>
  7. <h1>Another page</h1>
  8. <h2>Hello ${message}</h2>
  9. Click on this <strong><a href="/">link</a></strong> to visit previous page.
  10. </div>
  11. </div>
  12. </body>
  13. </html>

示例

编写完所有代码并将其放置在文件夹中之后,通过执行SpringBootWebApplication类中的main()方法来运行应用程序。

现在点击 URL:http://localhost:8080/

Spring Boot JSP 视图解析器示例 - 图2

Spring Boot 应用 – index

点击下一个链接

Spring Boot JSP 视图解析器示例 - 图3

Spring Boot 应用 – next

Spring Boot JSP 示例源代码

用下面的链接下载该应用程序的源代码。

下载源码

在本教程中,我们通过示例学习了 Spring Boot JSP ViewResolver,以及其他可能使用的多个视图解析器。

学习愉快!

参考:

Spring Boot

Spring Boot 应用程序属性

Spring MVC