英文: Filter api by multiple optional parameters 问题 我正在尝试使用多个可选参数来筛选存储库方法。但是我没有得到预期的结果。 以下是我的查询语句。 这里的...
有没有办法使用Hibernate从Java中监控数据库性能?
英文: Is there a way to monitor database performance from java using hibernate? 问题 我使用 Hibernate,我的数据库...
如何使用JPA规范在非主键列上创建查询
英文: How to create query using JPA specification on non primary column 问题 以下是翻译好的部分: 我有以下查询,其中两个表在非主键...
Hibernate:拥有一个不持久化但可以从数据库中提取的字段?
英文: Hibernate: Have a field that is not-peristed but can be pulled from DB? 问题 我是下面的 Hibernate 实体: @...
如何使用JTA向表中插入数据?
英文: how to insert to table with JTA? 问题 我想将数据持久化到表中。当我调用保存方法时,它抛出一个异常:"**EXCEPTION saveToDB ---j...
`@JoinTable`注解中的`foreignKey`和`inverseForeignKey`是什么意思?
英文: What is foreignKey and inverseForeignKey in @JoinTable annotation? 问题 以下是您提供的代码的翻译部分: @NoArgsCon...
使用Spring / Hibernate,应如何完成这个简单的业务逻辑?
英文: With Spring / Hibernate, how should this simple business logic be done? 问题 有一个简单的项目,包含两个实体:账户(Ac...
JPA实体层次结构中的双向关系
英文: Bidirectional relationship between JPA entities in a hierarchy 问题 在使用Spring Data JPA(以Hibernate为...
Hibernate sql query has two same tables and is expected to return colums that have same name but different values , but it returns same value
英文: Hibernate sql query has two same tables and is expected to return colums that have same name but...
从Hibernate实体构建SQL保存、更新、删除查询?
英文: Constructing a SQL save, update, remove query from hibernate entities? 问题 可以通过Hibernate创建原生SQL查询...
70