klg-jpa:spring-data-jpa 最佳實踐

klg-jpa:spring-data-jpa 最佳實踐

項目介紹

碼雲地址:https://gitee.com/klguang/klg-jpahtml

JPA是sun爲POJO持久化制定的標準規範,用來操做實體對象,執行CRUD操做,讓開發者從繁瑣的JDBC和SQL代碼中解脫出來。 可是JPA有如下兩個缺陷:
1.臃腫的動態條件查詢 
java

2.衆所周知,複雜查詢(聯接表查詢)的效率低 
spring-data-jpa和mybatis能夠整合在一塊兒使用有什麼優缺點,這個問答種瞭解到 spring-data-jpa-extra這個庫,讓咱們可用更方便的寫sql查詢。git

klg-jpa,spring-data-jpa 最佳實踐,用起來就像開了掛,更多例子klg-j2ee-dataacess-demo 演示github

單表查詢最佳實踐

1. find by attribute是一種較靈活的方式,須要用到jpa生成的metamodel,在快速開發的利器 spring

BaseRepository api:sql

	//-------------find by attribute------------------------
	public Page<T> findPage(Pageable pageable,AttrExpression...exprs);
	public List<T> findList(Sort sort,AttrExpression...exprs);
	public List<T> findList(AttrExpression...exprs);
	public T getOne(AttrExpression...exprs);
	public long count(AttrExpression...exprs);

find by attribute 適合不定條件單表查詢,默認是不忽略空值的(null或者""),若是要忽略空值,請用AExpr屬性表達式構造器的igEmpty()方法。api

Pageable pageable = new PageRequest(0, 10, new Sort(Direction.DESC, "userId"));
Page<User> userPage = userDAO.findPage(pageable, 
		AExpr.eq(User_.account, "").igEmpty(),
		AExpr.contain(User_.userName, "fd"));

含有開始和結束時間 動態查詢的處理mybatis

@ResponseBody
@RequestMapping("/findpage")
public EasyUIPage findpage(
	@RequestParam int page,
	@RequestParam int rows,
	@RequestParam(required=false) Long employeeid,
	@RequestParam(required=false) @DateTimeFormat(pattern="yyyy-MM-dd") Date startDate,
	@RequestParam(required=false) @DateTimeFormat(pattern="yyyy-MM-dd") Date endDate){
	Pageable pageable=new PageRequest(page<1?0:page-1, rows, new Sort(Direction.DESC,"numId"));
	_EmployeeName employeeName=employeeid==null?null:MyReflectUtil.createWithSet(_EmployeeName.class, "id", employeeid);

	Page<DrugOut> pageData=drugOutService.findPage(pageable, 
		AExpr.eq(DrugOut_.employeeName, employeeName).igEmpty(),
		AExpr.gte(DrugOut_.saledate, startDate).igEmpty(),
		AExpr.lte(DrugOut_.saledate, endDate).igEmpty());


	return new EasyUIPage(pageData);
}

注意: 
1).複雜屬性的表達式處理:先判斷複雜屬性的實體的id是否爲空
2).動態查詢,參數(required=false)、查詢的屬性表達式列表(igEmpty)架構

2. 經過解析Repository中的方法名建立查詢,是spring-data-jpa的一大特點。符合經典的java三層架構:表現層(UI),業務邏輯層(BLL),數據訪問層(DAL) app

這是spring官網的例子:經過EmailAddress和Lastname來查找用戶

public interface UserRepository extends Repository<User, Long> {

  List<User> findByEmailAddressAndLastname(String emailAddress, String lastname);
}

詳見spring-data-jpa#Query Creation

3. 頁面參數封裝到實體,而後運用qbe(query by example)。qbe會自動忽略null值 
BaseRepository api:

	//--------------qbe(query by example)--------------------
	public Page<T> findPage(T example,Pageable pageable);
	public List<T> findList(T example,Sort sort);
	public List<T> findList(T example);
	public T getOne(T example);
	public long count(T example);

qbe複雜查詢只支持String的模糊查詢,大於、小於、between and均不支持。
ExampleMatcher例字,嵌套屬性模糊匹配

//User有屬性logrole
ExampleMatcher matcher=ExampleMatcher.matching()
	.withMatcher("logrole.logRoleName", GenericPropertyMatcher.of(StringMatcher.CONTAINING).ignoreCase());
List<User> users=userDAO.findAll(Example.of(user,matcher));

詳見spirng-data-jpa#query-by-example

複雜查詢最佳實踐

複雜查詢,不管是用java代碼進行sql拼接仍是臃腫的Criteria動態查詢都是不推薦的。由於這麼作一方面是不夠優雅,更重要的是難以維護。Mybatis的流行給了咱們不少啓發,複雜查詢用sql配置文件,是一種靈活且方便維護的方式。
如下兩種方式是我推薦你們使用的:

  1. 可用使用@NamedQuery,或spring-data-jpa的@Query
  2. 引入spring-data-jpa-extra這個庫

使用說明

  1. 下載本項目,並執行maven install ,在項目引入依賴
  2. 項目中Repository繼承BaseRepository,Service接口繼承BaseService,ServiceImpl繼承BaseServiceImpl;BaseService的接口中有BaseRepository的大部分方法
  3. spring配置以下:
	<!-- 指定 BaseRepositoryFactoryBean -->
	<jpa:repositories base-package="demo,com.slyak.spring.jpa"
		factory-class="klg.common.dataaccess.BaseRepositoryFactoryBean"
		entity-manager-factory-ref="entityManagerFactory"
		transaction-manager-ref="transactionManager" repository-impl-postfix="Impl" />
	
	<!-- 配置 freemarkerSqlTemplates解析相關-->
	<bean id="freemarkerSqlTemplates" class="com.slyak.spring.jpa.FreemarkerSqlTemplates">
		<property name="suffix" value=".sftl" />
		<property name="templateLocation" value="classpath*:/sqls"/>
	</bean>

若有疑問下載klg-j2ee-dataacess-demo 演示

注意

本項目依賴spring-data-jpa-extra-2.1.2.RELEASE,但我作了一些改動,而後打成jar包
項目地址:https://github.com/klguang/spring-data-jpa-extra/tree/2.1.2.RELEASE

  1. com.slyak.spring.jpa.ContextHolder 訪問控制爲public,目的是讓原來項目中已經存在的BaseRepositoryFactoryBean能工做。
  2. 模板文件名爲Entity的java full name
  3. 測試用例跑通
相關文章
相關標籤/搜索