我是Spring Boot的新手。尝试使用spring-boot maven创建一个简单的Web应用程序。使用依赖项spring-boot-starter-web
的基本静态页面显示效果很好。当我在spring-boot-devtools
中包含spring-boot-starter-actuator
和pom.xml
时,给出了构建错误Re-run Maven using the -X switch to enable full debug logging
。
我尝试在pom文件中包含spring-webmvc
依赖项,结果仍然相同。
<?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 http://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.1.1.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.test</groupId>
<artifactId>jspTest</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>jspTest</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<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>
</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>
我从spring.io
(SPRING INITIALIZR网站)下载了此项目。构建项目失败。
答案 0 :(得分:0)
<scope>runtime</scope>
中的 spring-boot-devtools
应该不是运行时。实际上,根据文档-
在完全运行时会自动禁用开发人员工具 打包的应用程序。如果您的应用程序是从java -jar启动的 或者如果它是从特殊的类加载器启动的,则认为它是 “生产申请”。在以下选项中将依赖项标记为可选 Maven或在Gradle中使用自定义
developmentOnly
配置(如 如上所示)是防止devtools被入侵的最佳做法 可传递地应用于使用您的项目的其他模块。
因此,如下更改依赖性-
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
答案 1 :(得分:0)
您可以更新pom.xml并将版本号更改为以前的任何稳定版本。它对我有用。
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>**xyz_previous_.RELEASE**</version>
<relativePath/> <!-- lookup parent from repository -->