原文: http://zetcode.com/springboot/static/

    Spring Boot 静态内容显示了如何在 Spring Boot 应用中提供静态内容。

    Spring 是流行的 Java 应用框架。 Spring Boot 致力于以最小的努力创建独立的,基于生产级别的基于 Spring 的应用。

    Spring Boot 自动添加位于以下任何目录中的静态 Web 资源:

    • /META-INF/resources/
    • /resources/
    • /static/
    • /public/

    目录位于类路径或ServletContext的根目录中。

    在我们的应用中,我们有一个 HTML 文件,其中包含一个简单的链接。 该链接触发来自 Web Boot 应用的响应。 它返回纯文本消息。

    1. pom.xml
    2. src
    3. ├───main
    4. ├───java
    5. └───com
    6. └───zetcode
    7. Application.java
    8. ├───controller
    9. MyController.java
    10. └───model
    11. Message.java
    12. └───resources
    13. application.properties
    14. └───static
    15. index.html
    16. └───css
    17. main.css
    18. └───test
    19. └───java
    20. └───com
    21. └───zetcode
    22. └───controller
    23. MyControllerTest.java

    这是 Spring Boot 应用的项目结构。

    pom.xml

    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <project xmlns="http://maven.apache.org/POM/4.0.0"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
    5. http://maven.apache.org/xsd/maven-4.0.0.xsd">
    6. <modelVersion>4.0.0</modelVersion>
    7. <groupId>com.zetcode</groupId>
    8. <artifactId>springbootstaticex</artifactId>
    9. <version>1.0-SNAPSHOT</version>
    10. <packaging>jar</packaging>
    11. <properties>
    12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    13. <maven.compiler.source>11</maven.compiler.source>
    14. <maven.compiler.target>11</maven.compiler.target>
    15. </properties>
    16. <parent>
    17. <groupId>org.springframework.boot</groupId>
    18. <artifactId>spring-boot-starter-parent</artifactId>
    19. <version>2.1.1.RELEASE</version>
    20. </parent>
    21. <dependencies>
    22. <dependency>
    23. <groupId>org.springframework.boot</groupId>
    24. <artifactId>spring-boot-starter-web</artifactId>
    25. </dependency>
    26. <dependency>
    27. <groupId>org.springframework.boot</groupId>
    28. <artifactId>spring-boot-starter-test</artifactId>
    29. <scope>test</scope>
    30. </dependency>
    31. </dependencies>
    32. <build>
    33. <plugins>
    34. <plugin>
    35. <groupId>org.springframework.boot</groupId>
    36. <artifactId>spring-boot-maven-plugin</artifactId>
    37. </plugin>
    38. </plugins>
    39. </build>
    40. </project>

    这是 Maven 构建文件。 spring-boot-starter-web是使用 Spring MVC 构建 Web 应用的入门。 spring-boot-starter-test导入必要的测试模块。 该应用打包到一个 JAR 文件中。

    com/zetcode/model/Message.java

    1. package com.zetcode.model;
    2. import org.springframework.beans.factory.annotation.Value;
    3. import org.springframework.stereotype.Component;
    4. @Component
    5. public class Message {
    6. @Value("${app.message}")
    7. private String message;
    8. public String get() {
    9. return message;
    10. }
    11. }

    Message设置 Spring Boot 应用。

    1. @Value("${app.message}")
    2. private String message;

    我们将application.properties中的值注入message变量中。

    resources/application.properties

    1. app.message=Hello there

    application.properties文件包含 Spring Boot 应用的各种配置设置。 我们定义一个具有文本消息的自定义属性。

    com/zetcode/controller/MyController.java

    1. package com.zetcode.controller;
    2. import com.zetcode.model.Message;
    3. import org.springframework.beans.factory.annotation.Autowired;
    4. import org.springframework.stereotype.Controller;
    5. import org.springframework.web.bind.annotation.GetMapping;
    6. import org.springframework.web.bind.annotation.ResponseBody;
    7. @Controller
    8. public class MyController {
    9. @Autowired
    10. private Message message;
    11. @GetMapping(path = "/message")
    12. @ResponseBody
    13. public String message() {
    14. return message.get();
    15. }
    16. }

    这是 Spring Boot Web 应用的控制器类。 控制器以@Controller注解修饰。 控制器具有一个映射; 它被映射到/message路径并返回纯文本消息。

    1. @Autowired
    2. private Message message;

    Message对象被注入到属性中。

    1. @GetMapping(path = "/message")
    2. @ResponseBody
    3. public String message() {
    4. return message.get();
    5. }

    message()方法响应 GET 请求。 @ResponseBody注解将字符串值放入 Web 响应正文。

    resources/static/index.html

    1. <!DOCTYPE html>
    2. <html>
    3. <head>
    4. <title>Home page</title>
    5. <meta charset="UTF-8">
    6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
    7. <link href="css/main.css" rel="stylesheet" type="text/css">
    8. </head>
    9. <body>
    10. <h2>Home page</h2>
    11. <a href="/message">Get message</a>
    12. </body>
    13. </html>

    index.html文件中,我们必须调用从 Web 应用的响应的链接。 该文件位于src/main/resources/static目录中,该目录是 Spring 寻找静态内容的默认目录。

    1. <link href="css/main.css" rel="stylesheet" type="text/css">

    在链接标记中,我们指的是main.css静态资源,该资源位于src/main/resources/static/css目录中。

    resources/static/css/main.css

    1. h2 { color: blue }

    main.css文件中,我们将h2标签设置为蓝色。

    com/zetcode/controller/MyControllerTest.java

    1. package com.zetcode.controller;
    2. import org.junit.Before;
    3. import org.junit.Test;
    4. import org.junit.runner.RunWith;
    5. import org.springframework.beans.factory.annotation.Autowired;
    6. import org.springframework.boot.test.context.SpringBootTest;
    7. import org.springframework.test.context.junit4.SpringRunner;
    8. import org.springframework.test.web.servlet.MockMvc;
    9. import static org.springframework.test.web.servlet.result.MockMvcResultHandlers.print;
    10. import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
    11. import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
    12. import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
    13. import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.forwardedUrl;
    14. import org.springframework.test.web.servlet.setup.MockMvcBuilders;
    15. import org.springframework.web.context.WebApplicationContext;
    16. @RunWith(SpringRunner.class)
    17. @SpringBootTest
    18. public class MyControllerTest {
    19. @Autowired
    20. private WebApplicationContext wac;
    21. private MockMvc mockMvc;
    22. @Before
    23. public void setup() {
    24. this.mockMvc = MockMvcBuilders.webAppContextSetup(this.wac).build();
    25. }
    26. @Test
    27. public void getHome() throws Exception {
    28. this.mockMvc.perform(get("/"))
    29. .andDo(print())
    30. .andExpect(status().isOk())
    31. .andExpect(forwardedUrl("index.html"));
    32. }
    33. @Test
    34. public void getMessage() throws Exception {
    35. this.mockMvc.perform(get("/message"))
    36. .andDo(print())
    37. .andExpect(status().isOk())
    38. .andExpect(content().string("Hello there"));
    39. }
    40. }

    MyControllerTest中,我们有两个测试:一个用于主页,另一个用于返回的消息文本。

    com/zetcode/Application.java

    1. package com.zetcode;
    2. import org.springframework.boot.SpringApplication;
    3. import org.springframework.boot.autoconfigure.SpringBootApplication;
    4. @SpringBootApplication
    5. public class Application {
    6. public static void main(String[] args) {
    7. SpringApplication.run(Application.class, args);
    8. }
    9. }

    Application设置 Spring Boot 应用。 @SpringBootApplication注解启用自动配置和组件扫描。

    在本教程中,我们在 Spring Boot 应用中提供了静态上下文。 您可能也对相关教程感兴趣: Spring Boot DataSourceBuilder教程Spring Boot iText 教程Spring Boot RESTFul 应用Spring Web 应用简介独立的 Spring 应用Java 教程或列出所有 Spring Boot 教程