作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据这篇文章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() {
}
}
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来自 runtime
至compile
因为在编译时也需要依赖项。
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/
我是一名优秀的程序员,十分优秀!