我已经有一段时间没有使用spring了,我正在尝试让spring引导开发工具执行热重新加载。我已经从start.spring.io project generator导入了web和spring引导依赖项,并为“/hello”创建了一个uri。我可以运行这个项目,但是更改uri值并不能热重载,而且我不相信热重载是有效的。根据我在互联网上的搜索发现,唯一必要的步骤是在pom文件中添加热重新加载依赖项:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
我的整个pom.xml文件如下(从start.spring.io网站生成):
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.java</groupId>
<artifactId>java_app</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>java_app</name>
<description>Web Project</description>
<properties>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
我的web uri文件如下(可以工作,但不需要热重新加载):
package com.java.java_app;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@SpringBootApplication
@RestController
public class JavaAppApplication {
public static void main(String[] args) {
SpringApplication.run(JavaAppApplication.class, args);
}
@GetMapping("/hello")
public String hello(@RequestParam(value = "name", defaultValue = "World") String name){
return String.format("Hello %s!", name);
}
}
这是一个简单的应用程序,因为我认为它是可能建立的,所以我不清楚什么额外的必要步骤,需要使热重新加载工作。这里似乎没有记载(https://www.baeldung.com/spring-boot-devtools)除了添加依赖项。如果有关系的话,我运行的是ubuntu20.04。
编辑:
我正在端口8080上的终端上运行应用程序,并在应用程序运行时使用vim修改uri文件。由于java有很多插件用于各种ide,有人建议值得一提。
1条答案
按热度按时间cxfofazt1#
如果您不使用ide,您可以使用
./mvnw compile
并且项目将在编辑器运行时重新编译。