博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spring Boot下如何自定义Repository中的DAO方法
阅读量:6080 次
发布时间:2019-06-20

本文共 4795 字,大约阅读时间需要 15 分钟。

环境配置介绍

jdk 1.8,  Boot 1.5.3.RELEASE, , Spring Data, JPA

问题描述

Spring Data提供了一套简单易用的DAO层抽象与封装,覆盖的CURD的基本功能,但是在诸多的情况下,需要用户自定义DAO的实现方法,来实现更为复杂和精细的访问操作,该如何来解决这个问题?

目标描述

这里我们以自定义testAA的方法为例,来介绍如何实现自定义的DAO方法扩展。

数据库表的定义

我们这里定义了一个非常简单的mycity表,来作为示例的实体类BaseEntity: 

数据库表定义: 
这里写图片描述

import java.util.Date;import javax.persistence.Column;import javax.persistence.GeneratedValue;import javax.persistence.GenerationType;import javax.persistence.Id; import javax.persistence.MappedSuperclass; import javax.persistence.Temporal; import javax.persistence.TemporalType; import javax.persistence.Version; @MappedSuperclass public abstract class BaseEntity implements java.io.Serializable { private static final long serialVersionUID = -2420979951576787924L; @Id @GeneratedValue(strategy=GenerationType.IDENTITY) @Column(name = "ID") private Long id; @Version private Long version; @Temporal(TemporalType.TIMESTAMP) @Column(name = "CREATE_TIME",columnDefinition="timestamp default CURRENT_TIMESTAMP") private Date createTime; @Temporal(TemporalType.TIMESTAMP) @Column(name = "UPDATE_TIME",columnDefinition="timestamp default CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP") private Date updateTime; }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

MyCity的定义如下:

import javax.persistence.Column;import javax.persistence.Entity;import javax.persistence.Table;import lombok.Data;@Entity @Table(name="mycity") @Data public class City extends BaseEntity { private static final long serialVersionUID = -7510771121759944670L; @Column(name="Name") private String name; @Column(name="country_code") private String countryCode; @Column private String district; @Column private int population; }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

这里的@Data使用了lombok提供的强大标注,来简化冗余Getter/Setter方法的使用。

定义Repository

标准的CityRepository.,这里完全使用缺省提供的方法:

import org.springframework.data.jpa.repository.JpaRepository;import org.springframework.stereotype.Repository;import com.rose.money.City;@Repositorypublic interface CityRepository extends JpaRepository
, CityRepositoryCustom{ }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

这里的CityRepository继承了2个父类,包括用户自定义的接口类,让用户自定义的接口可以暴漏出来。 

这里的CityRepsoitoryCustom定义了用户的自定义方法:

public interface CityRepositoryCustom {    public void testAA(); }
  • 1
  • 2
  • 3
  • 1
  • 2
  • 3

Notice: 这里的Custom后缀是约定的,不能随意修改。 

自定义方法的实现类:

import java.util.List;import javax.persistence.EntityManager;import javax.persistence.PersistenceContext;import org.springframework.beans.factory.annotation.Autowired;public class CityRepositoryImpl implements CityRepositoryCustom { @Autowired @PersistenceContext private EntityManager entityManager; @Override public void testAA() { List
cities = entityManager.createNativeQuery("select id, name, district from mycity").getResultList(); for (Object[] objs : cities) { System.out.print("location 1:" + objs[0]); System.out.print("location 2:" + objs[1]); System.out.print("location 3:" + objs[2]); } } }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23

这里的实现类就是读取了几条记录,然后打印出来。其实现了Custom的接口类。

配置信息

application.properties:

spring.application.name=custom jpaspring.jpa.database=MYSQLspring.datasource.username=root spring.datasource.driver-class-name=com.mysql.jdbc.Driver spring.datasource.password=123456 spring.datasource.url=jdbc:mysql://localhost:3306/world?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&allowMultiQueries=true&useSSL=true spring.jpa.hibernate.naming.strategy=org.hibernate.cfg.ImprovedNamingStrategy spring.jpa.show-sql=true
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

测试

用例:

import org.junit.Test;import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; import com.rose.money.repository.CityRepository; @RunWith(SpringRunner.class) @SpringBootTest public class CustomjpaApplicationTests { @Autowired private CityRepository cityRepo; @Test public void contextLoads() { City city = cityRepo.findOne(1l); System.out.println("city=>" + city); cityRepo.testAA(); } }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22

测试的结果图示: 

这里写图片描述

总结

约定大于配置,Custom后缀实现与扩展,非常的简单实用。

http://www.woaipu.com/shops/zuzhuan/61406

http://nanning.xjwy.cn/f/bencandy.php?fid=43&id=117777
http://nanning.xjwy.cn/f/bencandy.php?fid=43&id=117890
http://nanning.xjwy.cn/f/bencandy.php?fid=43&id=117994
http://nanning.xjwy.cn/f/bencandy.php?fid=43&id=118376

转载于:https://www.cnblogs.com/sy646et/p/7203438.html

你可能感兴趣的文章
成为MySQL DBA博客-性能配置调优
查看>>
【java开发系列】—— spring简单入门示例
查看>>
无人驾驶,敢问路在何方?
查看>>
轻松实现日志可视化?— 95后阿里云 MVP 王鹏翰的答案
查看>>
Maven实战(六)--- dependencies与dependencyManagement的区别
查看>>
基于Ethereum & IPFS的去中心化Ebay区块链项目开发实战
查看>>
jQuery tmpl用法总结
查看>>
武汉seo:做网站标题优化设置教程的老生常谈问题
查看>>
FFmpeg实现监控摄像头的RTSP协议转RTMP协议直播
查看>>
两个不同概念?物联网是人工智能的基石
查看>>
反射程序集
查看>>
你所不知道的CSS滤镜技巧与细节
查看>>
duilib 修复 容器控件 rightbordersize和bottombordersize属性显示错误的bug
查看>>
RTP协议分析
查看>>
大数据在云计算中转换的4个步骤
查看>>
云安全:信息安全风险长尾的终结者
查看>>
阿里巴巴CTO王坚:电视不会垮掉
查看>>
【小程序】微信小程序开发实践
查看>>
OpenStack 实现技术分解 (7) 通用库 — oslo_config
查看>>
2013年四起数据泄露事故的经验教训
查看>>