SSH - 基于注解的SSH框架整合包含Hibernate二级缓存

由于本人习惯使用“注解”方式的配置,所以这里的事例都是基于“注解”的,还有就是我都是按步骤直接告诉大家如何搭建使用,没有冗长的理论在里面,理论部分,度娘和谷歌一搜一大把,我再粘过来一点意义都没有。

[color=red][b]1、找齐所有的JAR包[/b][/color]
[img]http://dl.iteye.com/upload/attachment/459609/444e7640-678e-36e3-a0fd-cfc1654e71f8.png[/img]

[color=red][b]2、配置web.xml[/b][/color]


xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">


org.springframework.web.context.ContextLoaderListener



contextConfigLocation
classpath:beans.xml



encoding
org.springframework.web.filter.CharacterEncodingFilter

encoding
UTF-8



encoding
/*



struts2
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter



struts2
/*



OpenSessionInViewFilter
org.springframework.orm.hibernate3.support.OpenSessionInViewFilter


OpenSessionInViewFilter
/*



/index




[color=red][b]3、配置struts.xml(在src目录下建立struts.xml即可,这里是struts2)[/b][/color]


"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">


















/index.jsp












[color=red][b]4、配置bean.xml(在src目录下建立bean.xml即可,这里是Spring2.5)[/b][/color]


xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">














com.main.movie.entity





hibernate.dialect=org.hibernate.dialect.MySQLDialect
hibernate.show_sql=true
hibernate.format_sql=true

hibernate.jdbc.batch_size=20


hibernate.cache.provider_class=org.hibernate.cache.EhCacheProvider
hibernate.cache.use_query_cache=true
hibernate.cache.use_second_level_cache=true





























[color=red][b]5、配置ehcache.xml(配置二级缓存的设置)[/b][/color]




eternal="false"
timeToIdleSeconds="120"
timeToLiveSeconds="1200"
overflowToDisk="true" />



[color=red][b]6、创建类HibernateTempUtil[/b][/color]

package com.main.movie.util;

import javax.annotation.Resource;

import org.springframework.orm.hibernate3.HibernateTemplate;

public abstract class HibernateTempUtil {
private HibernateTemplate hibernateTemplate;

public HibernateTemplate getHibernateTemplate() {
return hibernateTemplate;
}

@Resource
public void setHibernateTemplate(HibernateTemplate hibernateTemplate) {
this.hibernateTemplate = hibernateTemplate;
}
}


[color=red][b]7、在DAO层使用Hibernate[/b][/color]
这里稍微说明一下
1、@Component("adminDao"),是设置bean的名称为adminDao,当然在service层注入的时候就需要用到注解@Resource(name = "adminDao"),注意是在需要注入的属性的setter方法上写注解,其它地方同理
2、DAO的实现需要继承刚才建立的HibernateTempUtil,其实就是为了注入Template
3、用Hibernate查询的时候我用的是Spring的回调函数,回调函数要想使用外面方法传进来的参数,该参数必须是final型的

package com.main.movie.dao.impl;

import java.sql.SQLException;
import java.util.List;

import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.Session;
import org.springframework.dao.DataAccessException;
import org.springframework.orm.hibernate3.HibernateCallback;
import org.springframework.stereotype.Component;

import com.main.movie.dao.IAdminDao;
import com.main.movie.entity.MovAdmin;
import com.main.movie.exception.DaoException;
import com.main.movie.util.HibernateTempUtil;
import com.main.movie.util.HqlUtil;

/**
* 管理员维护
* @author main
*
*/
@Component("adminDao")
public class AdminDaoImpl extends HibernateTempUtil implements IAdminDao {
/**
* 管理员列表(带分页)
* @param page
* @param pageSize
* @return
* @throws DaoException
*/
@SuppressWarnings("unchecked")
public List findAdminList(final int page, final int pageSize) throws DaoException {
try {
List adminList = super.getHibernateTemplate().executeFind(new HibernateCallback() {
public Object doInHibernate(Session session) throws HibernateException, SQLException {
String hql = "from MovAdmin admin order by admin.ltime desc, admin.ctime asc";
Query q = session.createQuery(hql);
q.setFirstResult((page-1) * pageSize);
q.setMaxResults(pageSize);
return q.list();
}
});
return adminList;
} catch (DataAccessException e) {
throw new DaoException(e.getMessage(), e);
}
}

你可能感兴趣的:(SSH)