|
@ -5,6 +5,8 @@ import org.hibernate.Query;
|
|
|
import org.hibernate.Session;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.data.domain.PageRequest;
|
|
|
import org.springframework.data.domain.Pageable;
|
|
|
import org.springframework.data.domain.Sort;
|
|
|
import org.springframework.data.jpa.repository.JpaRepository;
|
|
|
import org.springframework.data.repository.CrudRepository;
|
|
@ -312,4 +314,48 @@ public abstract class BaseJpaService<T, R extends CrudRepository> {
|
|
|
}
|
|
|
return buffer.toString();
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 排序条件 第一个字符为 + 表示升序,第一个字符为 - 表示减序,不包含 + 或者 - 默认升序
|
|
|
* @param sorts
|
|
|
* @return
|
|
|
*/
|
|
|
public Sort createSort(String sorts){
|
|
|
Sort sort = null;
|
|
|
if (!org.springframework.util.StringUtils.isEmpty(sorts)) {
|
|
|
// 默认升序
|
|
|
if(sorts.contains("-")){
|
|
|
sort = new Sort(Sort.Direction.DESC,sorts.substring(1,sorts.length()).split(","));
|
|
|
}else if(sorts.contains("+")){
|
|
|
sort = new Sort(Sort.Direction.ASC,sorts.substring(1,sorts.length()).split(","));
|
|
|
}else{
|
|
|
sort = new Sort(Sort.Direction.ASC,sorts.split(","));
|
|
|
}
|
|
|
}
|
|
|
return sort;
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
* 创建分页对象
|
|
|
* @param page
|
|
|
* @param size
|
|
|
* @param sorts
|
|
|
* @return
|
|
|
*/
|
|
|
public Pageable creatPage(Integer page, Integer size, String sorts){
|
|
|
PageRequest pageRequest = null;
|
|
|
if(null == page || page <= 0){
|
|
|
page = defaultPage;
|
|
|
}
|
|
|
if(null == size || size <= 0){
|
|
|
size = defaultSize;
|
|
|
}
|
|
|
if(!org.apache.commons.lang3.StringUtils.isEmpty(sorts)){
|
|
|
pageRequest = new PageRequest(page,size,createSort(sorts));
|
|
|
}else{
|
|
|
pageRequest = new PageRequest(page,size);
|
|
|
}
|
|
|
|
|
|
return pageRequest;
|
|
|
}
|
|
|
}
|