gpt4 book ai didi

java - IntelliJ : Cannot resolve symbol 'GenericGenerator'

转载 作者:行者123 更新时间:2023-12-03 03:07:20 25 4
gpt4 key购买 nike

根据这篇文章https://vladmihalcea.com/hibernate-and-uuid-identifiers/
我想为我的类(class)生成 hibernate UUID。 IntelliJ 说'无法解析'GenericGenerator''。它也不识别 GenericGenerator 导入。

实体.java:

import javax.persistence.*;
import java.io.Serializable;
import java.util.Objects;

import org.hibernate.annotations.GenericGenerator;

@MappedSuperclass
public abstract class Entity {
@GeneratedValue(generator = "uuid")
@GenericGenerator(name = "uuid", strategy = "uuid")
@Column(columnDefinition = "CHAR(32)")
@Id
protected String id;

public BaseEntity() {
}
}

我的 build.gradle 中有这些依赖项:
compile group: 'javax.persistence', name: 'javax.persistence-api', version: '2.2'
runtime group: 'org.hibernate', name: 'hibernate-core', version: '5.4.9.Final'

最佳答案

作为 @GenericGenerator注释是 hibernate-core 的一部分,我会检查依赖项是否已在 IntelliJ 模块中正确注册。有时通过 build.gradle 重新导入项目会有所帮助。 .另外我会更改 dependency type来自 runtimecompile因为在编译时也需要依赖项。

compile group: 'org.hibernate', name: 'hibernate-core', version: '5.4.9.Final'

关于java - IntelliJ : Cannot resolve symbol 'GenericGenerator' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59226552/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com