这几天写了个ssh2分页实现,放到博客里留个记号,先贴代码有空再写说明了
@Entity(name="t_person")
public class Person implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue(strategy=GenerationType.AUTO)
private int id;
@Column(length=50,name="p_name")
private String name;
@Column(name="p_sex",nullable=true)
private String sex;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
}
package com.xangqun.base;
import java.io.Serializable;
import java.util.concurrent.locks.Condition;
import com.xangqun.page.OrderBy;
import com.xangqun.page.Pagination;
public interface BaseDao <T extends Serializable>{
/**
*
* @param eg 示例对象
* @param anyWhere 是否模糊查询,默认false。
* @param conds 排序和is null的字段。分别为OrderBy和String。
* @param pageNo 当前页号
* @param pageSize 每页记录数
* @param exclude 需要排除的属性
* @return
* @throws Exception
*/
public Pagination find(T eg, boolean anyWhere,
Condition[] conds, int pageNo, int pageSize, String... exclude) ;
public Pagination findAll(int pageNo, int pageSize, OrderBy... orders);
}
package com.xangqun.base;
import static org.hibernate.EntityMode.POJO;
import java.io.Serializable;
import java.lang.reflect.ParameterizedType;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.locks.Condition;
import org.apache.commons.lang.StringUtils;
import org.hibernate.Criteria;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.criterion.Criterion;
import org.hibernate.criterion.Example;
import org.hibernate.criterion.MatchMode;
import org.hibernate.criterion.Order;
import org.hibernate.criterion.Projection;
import org.hibernate.criterion.Projections;
import org.hibernate.criterion.Restrictions;
import org.hibernate.criterion.Example.PropertySelector;
import org.hibernate.metadata.ClassMetadata;
import org.hibernate.type.Type;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Isolation;
import org.springframework.transaction.annotation.Transactional;
import com.xangqun.page.Nullable;
import com.xangqun.page.OrderBy;
import com.xangqun.page.Pagination;
@Transactional
public abstract class BaseDaoImpl<T extends Serializable> implements BaseDao<T> {
public static final NotBlankPropertySelector NOT_BLANK = new NotBlankPropertySelector();
private Class<T> persistentClass;
protected SessionFactory sessionFactory;
@Autowired
public void setSessionFactory(SessionFactory sessionFactory) {
this.sessionFactory = sessionFactory;
}
protected Session getSession() {
return sessionFactory.getCurrentSession();
}
@SuppressWarnings("unchecked")
public BaseDaoImpl() {
this.persistentClass = (Class<T>) ((ParameterizedType) getClass()
.getGenericSuperclass()).getActualTypeArguments()[0];
}
/**
*
* @param eg 示例对象
* @param anyWhere 是否模糊查询,默认false。
* @param conds 排序和is null的字段。分别为OrderBy和String。
* @param pageNo 当前页号
* @param pageSize 每页记录数
* @param exclude 需要排除的属性
* @return
*/
@Override
@Transactional(isolation=Isolation.DEFAULT,readOnly=true)
public Pagination find(T eg, boolean anyWhere, Condition[] conds,
int pageNo, int pageSize, String... exclude) {
Order[] orderArr=null;
Condition[] condArr=null;
if (conds != null && conds.length > 0) {
List<Order> orderList = new ArrayList<Order>();
List<Condition> condList = new ArrayList<Condition>();
for (Condition c : conds) {
if (c instanceof OrderBy) {
orderList.add(((OrderBy) c).getOrder());
} else {
condList.add(c);
}
}
orderArr = new Order[orderList.size()];
condArr = new Condition[condList.size()];
orderArr = orderList.toArray(orderArr);
condArr = condList.toArray(condArr);
}
Criteria crit = getCritByEg(eg, anyWhere, condArr, exclude);
return findByCriteria(crit, pageNo, pageSize, null, orderArr);
}
@SuppressWarnings("unchecked")
protected ClassMetadata getCmd(Class clazz) {
return (ClassMetadata) getSessionFactory().getClassMetadata(clazz);
}
@Transactional(isolation=Isolation.DEFAULT,readOnly=true)
protected Criteria getCritByEg(T eg, boolean anyWhere, Condition[] conds,
String[] exclude) {
System.out.println(getSession().isOpen());
Criteria crit = getSession().createCriteria(getPersistentClass());
Example example = Example.create(eg);
System.out.println(eg);
example.setPropertySelector(NOT_BLANK);
if (anyWhere) {
example.enableLike(MatchMode.ANYWHERE);
example.ignoreCase();
}
for (String p : exclude) {
example.excludeProperty(p);
}
crit.add(example);
// 处理排序和is null字段
if (conds != null) {
for (Condition o : conds) {
if (o instanceof OrderBy) {
OrderBy order = (OrderBy) o;
crit.addOrder(order.getOrder());
} else if (o instanceof Nullable) {
Nullable isNull = (Nullable) o;
if (isNull.isNull()) {
crit.add(Restrictions.isNull(isNull.getField()));
} else {
crit.add(Restrictions.isNotNull(isNull.getField()));
}
} else {
// never
}
}
}
// 处理many to one查询
ClassMetadata cm = getCmd(eg.getClass());
String[] fieldNames = cm.getPropertyNames();
for (String field : fieldNames) {
Object o = cm.getPropertyValue(eg, field, POJO);
if (o == null) {
continue;
}
ClassMetadata subCm = getCmd(o.getClass());
if (subCm == null) {
continue;
}
Serializable id = subCm.getIdentifier(o, POJO);
if (id != null) {
Serializable idName = subCm.getIdentifierPropertyName();
crit.add(Restrictions.eq(field + "." + idName, id));
} else {
crit.createCriteria(field).add(Example.create(o));
}
}
return crit;
}
@Transactional(isolation=Isolation.DEFAULT,readOnly=true)
protected Pagination findByCriteria(Criteria crit, int pageNo,
int pageSize, Projection projection, Order... orders) {
int totalCount = ((Number) crit.setProjection(Projections.rowCount())
.uniqueResult()).intValue();
Pagination p = new Pagination(pageNo, pageSize, totalCount);
if (totalCount < 1) {
p.setList(new ArrayList());
return p;
}
crit.setProjection(projection);
if (projection == null) {
crit.setResultTransformer(Criteria.ROOT_ENTITY);
}
if (orders != null) {
for (Order order : orders) {
crit.addOrder(order);
}
}
crit.setFirstResult(p.getFirstResult());
crit.setMaxResults(p.getPageSize());
p.setList(crit.list());
return p;
}
static final class NotBlankPropertySelector implements PropertySelector {
private static final long serialVersionUID = 1L;
public boolean include(Object object, String property, Type type) {
return object != null
&& !(object instanceof String && StringUtils
.isBlank((String) object));
}
}
public Pagination findAll(int pageNo, int pageSize, OrderBy... orders) {
Criteria crit = createCriteria();
return findByCriteria(crit, pageNo, pageSize, null, OrderBy
.asOrders(orders));
}
protected Criteria createCriteria(Criterion... criterions) {
Criteria criteria = getSession().createCriteria(getPersistentClass());
for (Criterion c : criterions) {
criteria.add(c);
}
return criteria;
}
public SessionFactory getSessionFactory() {
return sessionFactory;
}
public void setPersistentClass(Class<T> persistentClass) {
this.persistentClass = persistentClass;
}
public Class<T> getPersistentClass() {
return persistentClass;
}
}
package com.xangqun.page;
/**
* 可分页接口
* @author xangqun
*
*/
public interface Paginable {
public int getTotalCount();//总数
public int getTotalPage(); //总分页
public boolean isFirst(); //是否第一页
public boolean isLast(); //是否最后页
public int getPageSize(); //每页显示个数
public int getcurrentPage(); //取得当前页
public int getNextPage(); //取得下一页
public int getPrePage(); //取得前一页
}
package com.xangqun.page;
public class SimplePage implements Paginable {
public static final int DEFAULT_COUNT = 10;
protected int currentPage; //当前页号
protected int pageSize; //每页记录数
protected int totalCount; //总记录数
protected int totalPage;
public SimplePage(){};
public SimplePage(int currentPage, int pageSize, int totalCount) {
this.currentPage = currentPage<0?1:currentPage;
this.pageSize = pageSize<0?10:pageSize;
this.totalCount = totalCount<0?0:totalCount;
if ((this.currentPage - 1) * this.pageSize >= totalCount) {
this.currentPage = totalCount / pageSize;
}
}
/**
* 调整分页参数,使合理化
*/
public void adjustPage() {
if (totalCount <= 0) {
totalCount = 0;
}
if (pageSize <= 0) {
pageSize = DEFAULT_COUNT;
}
if (currentPage <= 0) {
currentPage = 1;
}
if ((currentPage - 1) * pageSize >= totalCount) {
currentPage = totalCount / pageSize;
}
}
@Override
public int getcurrentPage() {
return currentPage;
}
@Override
public int getPageSize() {
return pageSize;
}
@Override
public int getNextPage() {
return isLast()?currentPage:(currentPage+1);
}
@Override
public int getPrePage() {
return isFirst()?currentPage:(currentPage-1);
}
@Override
public int getTotalCount() {
return totalCount;
}
@Override
public int getTotalPage() {
return (totalCount%pageSize!=0||totalCount==0)?(totalCount/pageSize+1):totalCount/pageSize;
}
@Override
public boolean isFirst() {
return (currentPage<=1)?true:false;
}
@Override
public boolean isLast() {
return currentPage>=totalCount?true:false;
}
public void setCurrentPage(int currentPage) {
this.currentPage = currentPage;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public void setTotalCount(int totalCount) {
this.totalCount = totalCount;
}
public void setTotalPage(int totalPage) {
this.totalPage = totalPage;
}
}
package com.xangqun.page;
import java.io.Serializable;
import java.util.List;
/**
* 分页实现
* @author xangqun
*
*/
public class Pagination extends SimplePage implements Paginable,Serializable {
private static final long serialVersionUID = 1L;
public List<? extends Object> list;
public Pagination() {
}
public Pagination(int currentPage, int pageSize, int totalCount) {
super(currentPage, pageSize, totalCount);
}
public Pagination(int currentPage, int pageSize, int totalCount, List<? extends Object> list) {
super(currentPage, pageSize, totalCount);
this.list = list;
}
public int getFirstResult() {
return (currentPage - 1) * pageSize;
}
public List<? extends Object> getList() {
return list;
}
public void setList(List<? extends Object> list) {
this.list = list;
}
}
package com.xangqun.page;
import java.io.Serializable;
public class Condition implements Serializable {
private static final long serialVersionUID = 1L;
protected String field;
public String getField() {
return field;
}
}
package com.xangqun.page;
public class Nullable extends Condition {
private static final long serialVersionUID = 1L;
private boolean isNull;
public Nullable(String field, boolean isNull) {
this.field = field;
this.isNull = isNull;
}
public static Nullable isNull(String field) {
return new Nullable(field, true);
}
public static Nullable isNotNull(String field) {
return new Nullable(field, false);
}
public boolean isNull() {
return isNull;
}
}
package com.xangqun.page;
import org.hibernate.criterion.Order;
public class OrderBy extends Condition{
private static final long serialVersionUID = 1L;
public static enum OrderType {
ASC, DESC
}
private OrderType orderType;
public OrderBy(){}
public OrderBy(String field,OrderType orderType){
this.field=field;
this.orderType=orderType;
}
public static OrderBy asc(String field) {
return new OrderBy(field, OrderType.ASC);
}
public static OrderBy desc(String field) {
return new OrderBy(field, OrderType.DESC);
}
public Order getOrder(){
Order order = null;
if (OrderType.ASC == orderType) {
order = Order.asc(getField());
} else if (OrderType.DESC == orderType) {
order = Order.desc(getField());
}
return order;
}
public static Order[] asOrders(OrderBy[] orderBys) {
if (orderBys != null) {
Order[] orders = new Order[orderBys.length];
for (int i = 0; i < orderBys.length; i++) {
orders[i] = orderBys[i].getOrder();
}
return orders;
} else {
return null;
}
}
}
分享到:
相关推荐
通过以上步骤,我们可以构建出一个基于Hibernate、Spring、Struts 2和Extjs的技术栈,并利用这些技术的特点来实现快速开发。此框架不仅提高了开发效率,还增强了系统的可维护性和可扩展性。开发者可以根据实际项目...
2 利用struts2 的LoginAction-validation.xml 3 在bean里把service包;暴露DWR,写了一个验证用户名的流程 4 采用jpa作为POJO,还是减少配置 5 加入display的分页,并且是物理分页 打开后自已建表sql.txt jdbc....
在Java Web开发中,S2SH(Struts2 + Spring + Hibernate)是一个常见的技术栈,它结合了MVC框架Struts2、依赖注入容器Spring以及持久层框架Hibernate,以实现高效且灵活的Web应用开发。在这个基于Annotation并对DAO...
内置一个基于数据库的代码生成器rapid-generator,极易进行二次开发 struts1,struts2的零配置 spring集成及加强,自动搜索hibernate的entity annotation class 集成动态构造sql的工具:rapid-xsqlbuilder 集成...
本文将详细介绍如何通过使用注解来实现一个具备分页功能的DAO层封装,并完成S2SH(Struts + Spring + Hibernate)框架的整合实例。 #### 二、核心知识点解析 ##### 1. 注解(Annotation) - **定义**:注解是Java...
本文档旨在详细介绍如何使用配置文件的方式完成DAO层的封装,并在此基础上实现分页功能,最终达成S2SH(Struts、Spring、Hibernate)的整合。此文档作为对《使用Annotation并对DAO层封装具有分页功能的S2SH整合实例...
本项目基于SSH2框架实现,SSH2是Struts2、Hibernate和Spring的集成,这是一个经典的Java Web开发技术栈。下面我们将深入探讨SSH2框架以及在OA项目中的应用。 1. **Struts2**:Struts2是一个MVC(Model-View-...
SSH(Struts2 + Spring + Hibernate)是一种经典的Java Web开发框架组合,用于构建高效、可扩展的企业级应用程序。在这个“SSH_Annotation高配架构”中,我们主要关注如何利用注解(Annotation)来简化配置,提升...
SSH快速开发框架是指整合了Struts、Spring和Hibernate三个开源框架的一种应用架构方案。它主要用于简化Java Web应用程序的开发流程,提高开发效率。 - **Struts 1.2**:负责处理前端请求并返回视图,提供MVC模式的...
SSH(Struts + Spring + Hibernate)是一个经典的Java Web开发框架,用于构建企业级应用程序。在这个主题中,“ssh数据库基本操作封装”指的是将常用的数据库交互功能,如增删改查(CRUD),通过SSH框架进行封装,...
本项目采用SSH2框架进行开发,SSH2是指Spring、Struts2和Hibernate这三个开源框架的组合,它们分别是应用层、表现层和持久层的技术解决方案。 Spring框架是Java企业级应用的核心组件,提供了依赖注入(Dependency ...
懒加载问题主要发生在关联对象的加载上,如果不恰当使用可能会导致N+1查询问题,严重影响性能。解决方法包括合理设置懒加载策略、使用分页和批量加载等技术。 39. **在SSH框架中,Struts如何与Spring的事务管理...
首先,SSH2是指Spring、Struts2和Hibernate这三个开源框架的组合,它们是Java Web开发中的常用组件。Spring框架提供依赖注入和面向切面编程,帮助我们管理对象的生命周期和事务;Struts2则是一个强大的MVC(Model-...
* Struts2 + Hibernate + Spring 的联合开发 * AJAX 框架的使用 * SSH2 的使用和 SSH2 整合 Android 应用开发 * Android 平台的开发 * Android 应用的设计和实现 项目实训 * 超级玛丽游戏开发 * 数据库连接池...
SSH2是Spring、Struts2和Hibernate三个开源框架的组合,它们分别是企业级应用开发中的模型-视图-控制器(MVC)架构模式的主要组件。Spring提供了依赖注入和AOP(面向切面编程)等功能,使得代码更易于维护和测试;...
结合Hibernate,了解Spring支持Web的配置,尝试SSH(Struts2, Spring, Hibernate)集成项目。 8. **EJB 3.0**:了解企业级Java Bean,包括实体Bean、会话Bean和消息驱动Bean。学习如何在WebLogic 8或Jboss上部署和...
自己整理的一些资料,不需要积分,希望对大家有帮助。 里面包有如下的一些java资料 Ant使用指南.pdf cvs.pdf Eclipse入门-- Eclipse的使用简介及插件开发.PDF ...spring2中文开发参考手册.chm a.txt
GWT Advanced Table 是一个基于 GWT 框架的网页表格组件,可实现分页数据显示、数据排序和过滤等功能! Google Tag Library 该标记库和 Google 有关。使用该标记库,利用 Google 为你的网站提供网站查询,并且可以...
GWT Advanced Table 是一个基于 GWT 框架的网页表格组件,可实现分页数据显示、数据排序和过滤等功能! Google Tag Library 该标记库和 Google 有关。使用该标记库,利用 Google 为你的网站提供网站查询,并且可以...