英文: Spring Boot + Jpa : How to make this find method work? 问题 我遇到了一个问题,但是我找不到一个确切的答案。我有一个名为 "Po...
ComponentScan或EntityScan在另一个项目中无法找到实体。
英文: ComponentScan or EntityScan don't find entities in another project 问题 我有一个 Spring Boot 项目,在这...
JPA的事务方法在已保存后更新列。
英文: JPA Transactional method updates the column after already saving it 问题 我正在保存通过 REST Webservice P...
CrudRepository带参数的查询
英文: CrudRepository query with parameter 问题 我想知道是否有任何方法可以在传递给仓库的函数中使用参数,然后在 @Query 中使用该参数。 我想要按游戏平台对用...
Java: 保存具有多对多关联的实体
英文: Java: saving entities with ManyToMany association 问题 我在保存具有ManyToMany关联的实体时遇到了问题。我已经阅读了一些关于此的帖子,...
使用Hibernate在PostgreSQL中创建数据库。
英文: Creating database using hibernate in postgres 问题 我正在尝试使用本地查询创建数据库。 我的代码: @Service public class D...
在Spring Security中,重复的grantedAuthorities会被移除。
英文: Duplicate grantedAuthorities are removed in spring security 问题 我正在使用 Spring Boot、AngularJS 和 JPA...
如何将某些表列映射到一个以列名为键的 Map。
英文: How to map some table columns to a Map with the column names as key 问题 我有这个表: CREATE TABLE user_...
Spring + Hibernate: 无法在单向关系中删除子项
英文: Spring + Hibernate :Unable to delete child in unidirectional relationship 问题 我在这里尝试找到类似的问题,我找到了这...
DTO模式与JPA Hibernate
英文: DTO pattern with JPA hibernate 问题 我正在按照这个教程学习关于数据传输对象(DTO)的内容,并查看将实体转换为DTO的方法。我想知道"懒加载关系&qu...
53