在我将module-info.java
添加到项目中之前,在Java 9中使用immutables-library可以正常工作,不再生成Immutables*.java
。
我向模块信息添加了IntelliJ建议的“requires value”。
我缺少什么,是immutables-library
问题还是我需要设置的其他内容,以便javac
查找注释处理。
我正在使用配置了 target/source = 9 的maven-compiler-plugin:3.7.0
的maven。
最佳答案
您遇到的问题是尚未将Immutable部件配置为注释处理器,应按以下步骤进行操作:
<?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>example</groupId>
<artifactId>jigsaw</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
<version>2.5.6</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>9</source>
<target>9</target>
<annotationProcessorPaths>
<dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
<version>2.5.6</version>
</dependency>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</project>
除了关于编码的提示,可以通过定义如下编码来简单地解决该提示:
<?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>example</groupId>
<artifactId>jigsaw</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
<version>2.5.6</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>9</source>
<target>9</target>
<annotationProcessorPaths>
<dependency>
<groupId>org.immutables</groupId>
<artifactId>value</artifactId>
<version>2.5.6</version>
</dependency>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</project>
如果通过上述配置进行构建,您将获得所需的所有东西:
.
├── pom.xml
├── src
│ └── main
│ └── java
│ ├── example
│ │ └── Some.java
│ └── module-info.java
└── target
├── classes
│ ├── example
│ │ ├── ImmutableSome$1.class
│ │ ├── ImmutableSome$Builder.class
│ │ ├── ImmutableSome.class
│ │ └── Some.class
│ └── module-info.class
├── generated-sources
│ └── annotations
│ └── example
│ └── ImmutableSome.java
├── jigsaw-1.0-SNAPSHOT.jar
├── maven-archiver
│ └── pom.properties
└── maven-status
└── maven-compiler-plugin
└── compile
└── default-compile
├── createdFiles.lst
└── inputFiles.lst