Spring Initializr 生成的 pom.xml 中的错误
Posted
技术标签:
【中文标题】Spring Initializr 生成的 pom.xml 中的错误【英文标题】:Error in the pom.xml generated by Spring Initializr 【发布时间】:2019-04-19 20:26:44 【问题描述】:我正在使用 Spring Tool Suite,我想使用 Kotlin、Spring 和 Maven 创建一个 REST API,但是我的 pom.xml 在通过 Spring Initializr 创建项目后出现错误。我的“父”标签引发错误,但我猜问题来自 kotlin-maven-plugin。我不知道这个 pom.xml 有什么问题。如果有人能帮我解决这个问题,我将不胜感激!
这是我的 pom.xml:
<?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>
<groupId>fr.asi</groupId>
<artifactId>api_kotlin_test</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>api_kotlin_test</name>
<description>Demo project for Spring Boot</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.6.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<kotlin.version>1.2.51</kotlin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-rest</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-kotlin</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<sourceDirectory>$project.basedir/src/main/kotlin</sourceDirectory>
<testSourceDirectory>$project.basedir/src/test/kotlin</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>kotlin-maven-plugin</artifactId>
<groupId>org.jetbrains.kotlin</groupId>
<configuration>
<args>
<arg>-Xjsr305=strict</arg>
</args>
<compilerPlugins>
<plugin>spring</plugin>
<plugin>jpa</plugin>
</compilerPlugins>
</configuration>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-allopen</artifactId>
<version>$kotlin.version</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-noarg</artifactId>
<version>$kotlin.version</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
我有这个错误:
Project configurator "org.jetbrains.kotlin.maven.projectConfigurator" required by plugin execution "org.jetbrains.kotlin:kotlin-maven-plugin:1.2.51:test-compile (execution: test-compile, phase: test-compile)" is not available. To enable full functionality, install the project configurator and run Maven->Update Project Configuration.
【问题讨论】:
您是否真的尝试在 STS 中安装 Kotlin 插件? 在普通命令行上检查.... 是的,我已经安装了 kotlin 插件。 @khmarbaise 是什么意思? 【参考方案1】:我在 pom.xml 中添加如下属性:
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
添加此属性后,只需保存您的 pom.xml 并更新您的项目。错误应该得到解决。 以下是 pom.xml 中的 sn-p:
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.1.8.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.in28minutes.learning.jpa</groupId>
<artifactId>jpa-in-10-steps</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>jpa-in-10-steps</name>
<description>Demo project for Spring Boot</description>
<properties>
<java.version>1.8</java.version>
<maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
</properties>
【讨论】:
【参考方案2】:我通过添加一个“plugingManagement”标签来包含“plugins”标签,如下所示:
<pluginManagement>
<plugins>
.......
</plugins>
</pluginManagement>
注意:此更改刚刚删除了错误,但我仍然无法运行代码(Eclipse 中的“作为 Kotlin 应用程序运行”选项在我的案例中不存在。)我不确定这些错误是否存在是相关的,但我无法确认它们不相关。
编辑:我只是通过将IDE切换到IntelliJ IDEA来避免这个问题,现在Eclipse的Kotlin插件似乎并不完美......现在一切都很好,“pluginManagement”标签没用现在。
【讨论】:
以上是关于Spring Initializr 生成的 pom.xml 中的错误的主要内容,如果未能解决你的问题,请参考以下文章
meethigher-搭建个人Spring-Initializr服务器
Springboot:使用Intellij中的Spring Initializr来快速构建Spring Boot工程