英文: Which package should an enum, which is a part of a domain entity, be kept in a Java project? 问题 ...
如何在JPA中强制 @Transactional 在提交两个仓库操作,而不仅仅是最后一个?
英文: How to force @Transactional in JPA to commit two repository action not only just the last one? 问...
如何在Spring JPA/Hibernate中使用JoinTable设置子实体仅通过ID引用父实体。
英文: How to set up a child entity referencing parent by only ID using a JoinTable in Spring JPA/Hiber...
从具有多个过滤条件的数据库中仅获取选定的列,使用 Spring Boot 2 和 JPA。
英文: Get only selected columns from DB with multiple filtering criteria spring boot 2 JPA 问题 我试图创建一个S...
为什么我会得到“对象引用了未保存的临时实例”的错误?
英文: Why I get Object references an unsaved transient instance 问题 我在两个实体之间有多对多的关系:Tag 和 Ads。当用户想要创建广告...
使用HQL主动加载嵌套关联
英文: Eagerly load nested association using HQL 问题 我有以下的模型: public class BaseModel { List<DataA>...
Jpa在PostgreSQL中使用Smallint类型的枚举错误
英文: Jpa Enum error with Smallint type in postgres 问题 我想在我的实体中使用枚举(enum),但是在验证时出现了错误,JPA希望将smallint设置...
应该Spring的@Repository跟随JpaRepository吗?
英文: Should Spring @Repository follow JpaRepository? 问题 我想在 HashMap<> 或 ArrayList<> 中存储数据...
JPA在PostgreSQL中使用nativeQuery的参数
英文: JPA Params with nativeQuery in Postgresql 问题 我在一个仓库中有一个自定义的 @Query: @Query(value = "select C...
级联双向@OneToOne与@MapsId
英文: Cascade on bidirectional @OneToOne with @MapsId 问题 我使用的是Spring Boot 2.1.1.RELEASE 和 Hibernate 5....
53