当前位置: 首页 > 编程笔记 >

Spring Data Jpa实现自定义repository转DTO

解阳泽
2023-03-14
本文向大家介绍Spring Data Jpa实现自定义repository转DTO,包括了Spring Data Jpa实现自定义repository转DTO的使用技巧和注意事项,需要的朋友参考一下

近期项目中需要 关联 几张表再把字段转出来,在这里记录以下,我感觉网上写的都不太规范和清晰。

@Entity
@SqlResultSetMapping(
    name="TestMapping",
    entities = {
        @EntityResult(
            entityClass = com.xxx.xx.data.model.TestEntity.class,
            fields = {
                @FieldResult(name="id",column="id"),
                @FieldResult(name="localTime",column="time"),
                @FieldResult(name="maximumAppointment",column="maxAppointment"),
            }
        )
    }
)
@NamedNativeQuery(name="getTestQuery",
    query="select tableC.id as id,tableB.time,tableC.maximumAppointment as maxAppointment from tableB " +
        "               inner join tableA on tableA.id = tableB.tableAId " +
        "               inner join tableC on tableB.id = tableC.tableBId " +
        "               inner join custom on custom.id = tableA.customId " +
        "where " +
        "  tableA.locationId = :locationId" +
        "  and custom.id = :customId" +
        "  and tableB.deleted = false ", resultSetMapping="TestMapping")
@Data
public class TestEntity {
  @Id
  private String id;
  private LocalTime localTime;
  private Integer maximumAppointment;
}

需要声明接口:

@Repository
public interface TestEntityRepository extends JpaRepository<TestEntity,String> {

  @Query(name="getTestQuery")
  List<TestEntity> getTestQuery(String locationId, String customId);

}

若不想声明接口,那可以用EntityManager 来实现。

CriteriaBuilder criteriaBuilder = entityManager.getCriteriaBuilder();

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。

 类似资料:
  • 在开发过程中,常常需要为一些repository方法添加自定义的实现。Spring Data repository允许开发者自定义repository方法。

  • 通常你的Repository interface将会继承自Repository,CrudRepository或者PagingAndSortingRepository。另外,如果你不想继承Spring Data的接口,你也能通过@RepositoryDefinition声明你的Repository interface。继承自CrudRepository会暴露一系列的方法来操作你的实体。如果你喜欢选择

  • 本文向大家介绍Android自定义View实现自动转圈效果,包括了Android自定义View实现自动转圈效果的使用技巧和注意事项,需要的朋友参考一下 本文实例为大家分享了Android实现自动转圈效果展示的具体代码,供大家参考,具体内容如下 在values文件夹下创建attrs.xml 写一个类继承view 在主页面布局中引入自定义view类 以上就是本文的全部内容,希望对大家的学习有所帮助,也

  • 看起来Spring总是使用< code > inmemorrelyingpartyregistrationrepository 来返回一个< code > RelyingPartyRegistrationRepository 类型的bean,请参考https://github . com/Spring-projects/Spring-boot/blob/master/Spring-boot-pro

  • 本文向大家介绍SpringMVC自定义类型转换器实现解析,包括了SpringMVC自定义类型转换器实现解析的使用技巧和注意事项,需要的朋友参考一下 这篇文章主要介绍了SpringMVC自定义类型转换器实现解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下 页面录入的字符串:2019/12/05可以映射到实体的日期属性上,但是如果是录入2019-1

  • 通常情况下,我们的repository接口会继承Repository,CrudRepository或PagingAndSortingRepository接口。但是,如果不想通过extend关键字继承Spring Data的接口,还可以采用在自定义的repository接口上加注解的方式,两种方式是等价的。例子如下: public interface UserDao extends Reposit

  • 在第一步中我们定义了一个针对特定域对象的repository接口,接口继承了Repository接口并且标明了域对象类型及其主键类型。如果想要暴露CRUD方法可以不继承Repository接口,直接继承CrudRepository接口即可。

  • 问题 你想实现一个自定义的类来模拟内置的容器类功能,比如列表和字典。但是你不确定到底要实现哪些方法。 解决方案 collections 定义了很多抽象基类,当你想自定义容器类的时候它们会非常有用。 比如你想让你的类支持迭代,那就让你的类继承 collections.Iterable 即可: import collections class A(collections.Iterable):