我正在尝试使用maven和hibernate创建一个模块化的javafx应用程序。昨天,我在mywww. example中得到了很多错误 www.example.com 文件,因此我决定从头开始重新创建项目以隔离问题。
由于IDE找不到lombok生成的方法,因此项目无法编译。当我检查。类文件,它没有任何自动生成的样板文件。如果没有awww. example,我就不会遇到这个问题 www.example.com 文件。
根据我在其他关于lombok的帖子中看到的一些建议,我已经确保启用了注解处理,并在IntelliJ中启用了lombok插件。当我加上Lombok岛。jar到我的项目结构中的依赖项,module-info。jar无法编译,intelliJ显示“Ambiguous module reference:lombok”当我把光标放在'requires lombok'.模块声明也以红色下划线显示,显示以下消息:“模块'AlienDB'从'lombok'和'lombok'读取包'lombok'。
这是我的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>Aliens</groupId>
<artifactId>AlienDB</artifactId>
<version>1.0-SNAPSHOT</version>
<name>AlienDB</name>
<!-- FIXME change it to the project's website -->
<url>http://www.example.com</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>9</maven.compiler.source>
<maven.compiler.target>9</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.8</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.4.3.Final</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.16</version>
</dependency>
</dependencies>
<build>
<pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
<plugins>
<!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.0.2</version>
</plugin>
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
</plugin>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.7.1</version>
</plugin>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.0.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
www.example. com 文件:
module AlienDB {
requires lombok;
requires java.persistence;
requires org.hibernate.orm.core;
requires java.naming;
exports Aliens;
}
Alien1.java
package Aliens;
import lombok.Data;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
@Data
@Entity (name = "alien2")
public class Alien1 {
@Id
@Column(name = "aID", nullable = false)
private int aID;
@Column(name = "aName")
private String aName;
}
主应用程序:
package Aliens;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.boot.registry.StandardServiceRegistryBuilder;
import org.hibernate.cfg.Configuration;
import org.hibernate.service.ServiceRegistry;
public class App
{
public static void main( String[] args )
{
Configuration con = new Configuration().configure().addAnnotatedClass(Alien1.class);
ServiceRegistry reg = new StandardServiceRegistryBuilder().applySettings(con.getProperties()).build();
SessionFactory sf = con.buildSessionFactory(reg);
Session session = sf.openSession();
Transaction tx = session.beginTransaction();
Alien1 alienName = session.get(Alien1.class, 1);
//System.out.println(alienName.getAName());
tx.commit();
session.close();
sf.close();
}
}
当我运行如上所示的应用程序时,将lombok jar添加到依赖项中,我得到以下错误:
Boot 层java初始化时出错。lang.module.ResolutionException:模块lombok不读取导出org的模块。mapstruct.ap.国际体育联合会
当我移走Lombok岛。jar从项目结构中的依赖项,module-info.jar没有显示任何错误,但我得到以下错误:
Boot 层java初始化时出错。lang.module.FindException:未找到AlienDB所需的模块lombok
在这两种情况下,当我取消注解print line语句时,我得到了以下方法,大概是因为lombok还不能生成样板:
错误:(24,37)java:找不到符号符号:方法getAName()位置:Aliens类型的变量alienName。外星人1
模块结构:
C:.
├───.idea
├───src
│ ├───main
│ │ ├───java
│ │ │ └───Aliens
│ │ └───resources
│ └───test
│ └───java
│ └───Aliens
└───target
├───classes
├───generated-sources
│ └───annotations
├───generated-test-sources
│ └───test-annotations
├───maven-archiver
├───maven-status
│ └───maven-compiler-plugin
│ ├───compile
│ │ └───default-compile
│ └───testCompile
│ └───default-testCompile
├───surefire-reports
└───test-classes
├───Aliens
└───META-INF
我正在使用IntelliJ Ultimate 2019。1 SDK是java 11语言级别设置为9。
编辑:我也试着在Eclipse上运行它,我得到了同样的问题- Lombok方法没有被生成,即使它们在建议框中显示为有效的建议。
2条答案
按热度按时间kmbjn2e31#
我设法通过添加以下我的pom来解决这个问题。xml文件。
drnojrws2#
这是我在IntelliJ中遇到的最接近的问题之一-我的错误是:
但这里发布的解决方案并没有帮助。我可能会创建一个新的问题与所有步骤从头开始。但如果到那时有人能在这里给予一个额外的想法,我会很高兴。
编辑:
我可以在我的终端上使用关键字
static
来解决需要静态Lombok;