- sun_cat
- 等级: 初级会员
- 文章: 16
- 积分: 51
|
找了一些spring的文章看了下,有所启发,于是大概的总结了下,希望大家多提提意见
为了实现自己程序对spring和hibernate的过分依赖,因此自己写了一个接口,封装了8个常用的数据库操作
接口如下
java 代码
- package com.pig.dao;
-
- import java.io.Serializable;
- import java.util.Collection;
- import java.util.List;
-
- import org.springframework.dao.DataAccessException;
-
-
-
-
-
-
-
-
-
- public interface DAOInterface {
-
-
-
-
-
-
- public Serializable save(Object entity);
-
-
-
-
-
-
-
-
-
- public void saveOrUpdate(Object entity) throws DataAccessException;
-
-
-
-
-
-
-
-
-
- public void saveOrUpdate(Collection entities) throws DataAccessException;
-
-
-
-
-
-
-
- public void delete(Object entity) throws DataAccessException;
-
-
-
-
-
-
-
- public void delete(Class c, Serializable id) throws DataAccessException;
-
-
-
-
-
-
-
-
-
- public void delete(Collection entities) throws DataAccessException;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public Object load(Class entityClass, Serializable id) throws DataAccessException;
-
-
-
-
-
-
-
-
-
- public List find(String queryString) throws DataAccessException;
-
- }
他的实现
java 代码
- package com.pig.dao;
-
- import java.io.Serializable;
- import java.sql.SQLException;
- import java.util.Collection;
- import java.util.List;
-
- import org.apache.commons.logging.Log;
- import org.apache.commons.logging.LogFactory;
- 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.orm.hibernate3.support.HibernateDaoSupport;
-
- public class DAOInterfaceHibernate3Imp extends HibernateDaoSupport implements DAOInterface {
-
- private static Log log=LogFactory.getLog(DAOInterfaceHibernate3Imp.class);
-
- public void delete(Object entity) throws DataAccessException {
- getHibernateTemplate().delete(entity);
- }
-
- public void delete(Class c, Serializable id) throws DataAccessException {
- Object entiry = load(c, id);
- getHibernateTemplate().delete(entiry);
- }
-
- public void delete(Collection entities) throws DataAccessException {
- getHibernateTemplate().deleteAll(entities);
- }
-
- public List find(String queryString) throws DataAccessException {
- return getHibernateTemplate().find(queryString);
- }
-
- public Object load(Class entityClass, Serializable id) throws DataAccessException {
- return getHibernateTemplate().load(entityClass, id);
- }
-
- public Serializable save(Object entity) {
- return getHibernateTemplate().save(entity);
- }
-
- public void saveOrUpdate(Object entity) throws DataAccessException {
- getHibernateTemplate().saveOrUpdate(entity);
- }
-
- public void saveOrUpdate(Collection entities) throws DataAccessException {
- getHibernateTemplate().saveOrUpdateAll(entities);
- }
-
-
- }
这样如果 hibernate如果有了变得 只改变他的实现类就可以了,甚至可以改变成其他的中间件实现
在程序中只用了实现了一个DAO,感觉他可以对所以的类操作了,至于其他的和业务相关联的操作 例如用户登陆,修改秘密等操作 我把他们归结到了 service中,这样service的实现可能要好多的类和接口
大家看下我的DAO
java 代码
- package com.pig.dao;
-
- import java.io.Serializable;
- import java.util.Collection;
- import java.util.List;
-
- import org.springframework.dao.DataAccessException;
-
- import com.pig.util.PropertyResource;
-
-
- public class BasicDAO {
-
- private DAOInterface dao;
- private PropertyResource sqlMapping;
-
- public BasicDAO(){
-
- }
-
- public void delete(Object entity) throws DataAccessException {
- dao.delete(entity);
- }
-
- public void delete(Class c, Serializable id) throws DataAccessException {
- dao.delete(c,id);
- }
-
- public void delete(Collection entities) throws DataAccessException {
- dao.delete(entities);
- }
-
- public List find(String queryStringKey,Object[] args) throws DataAccessException {
- return dao.find(sqlMapping.getFormattedString(queryStringKey, args));
- }
-
- public Object load(Class entityClass, Serializable id) throws DataAccessException {
- return dao.load(entityClass, id);
- }
-
- public Serializable save(Object entity) {
- return dao.save(entity);
- }
-
- public void saveOrUpdate(Object entity) throws DataAccessException {
- dao.saveOrUpdate(entity);
- }
-
- public void saveOrUpdate(Collection entities) throws DataAccessException {
- dao.saveOrUpdate(entities);
- }
-
-
- }
在这个DAO中注入了一个DAOInterface 和 一个properties 文件 这个文件可以根据key来找到对应的hql 或者sql语句 并将参数格式化进去,看下这个方法
java 代码
- public List find(String queryStringKey,Object[] args) throws DataAccessException {
- return dao.find(sqlMapping.getFormattedString(queryStringKey, args));
- }
这个方法直接根据给定的hql语句 查询出结果集。本来还想给出一个根据hql来更新数据库的操作,但是发现hibernate好像没有提供这个接口(我对hibernate的了解还不是很多)
下面将读取hql文件的的类也一并给出 大家参考下把,这个hql文件应该放到classpath下
java 代码
- package com.pig.util;
-
- import java.text.MessageFormat;
- import java.util.*;
-
-
-
-
-
-
-
- public class PropertyResource {
-
- private String resourceName;
-
- private Locale locale;
-
- private Map<String, String> properties;
-
- public PropertyResource() {
- }
-
- private void init() {
- if (properties == null) {
- properties = new Hashtable<String, String>();
- ResourceBundle rb = null;
- if (locale == null) {
- rb = ResourceBundle.getBundle(resourceName);
- } else {
- rb = ResourceBundle.getBundle(resourceName, locale);
- }
- Enumeration<String> e = rb.getKeys();
- String key = null;
- String value = null;
- while (e.hasMoreElements()) {
- key = e.nextElement();
- value = rb.getString(key);
- properties.put(key, value);
- }
- }
- }
-
- public String getString(String key) {
- if (properties == null) {
- init();
- }
- return properties.get(key);
- }
-
- public String getString(String key, String defaultValue) {
- if (properties == null) {
- init();
- }
- String value = properties.get(key);
- return value == null ? defaultValue : value;
- }
-
- public String getFormattedString(String key, Object args[]) {
- String msg = MessageFormat.format(getString(key), args);
- return msg;
- }
-
- public Locale getLocale() {
- return locale;
- }
-
- public void setLocale(Locale locale) {
- this.locale = locale;
- }
-
- public String getResourceName() {
- return resourceName;
- }
-
- public void setResourceName(String resourceName) {
- this.resourceName = resourceName;
- }
- }
最后大家看下我spring的配置文件把,这个配置文件还配置了对事务的管理(参考了他人的做法)
java 代码
- <!-- Hibernate SessionFactory -->
- <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
- <property name="dataSource" ref="dataSource"/>
- <property name="mappingResources">
- <list>
- </list>
- </property>
- <property name="hibernateProperties">
- <props>
- <prop key="hibernate.dialect">${hibernate.dialect}</prop>
- <prop key="hibernate.show_sql">true</prop>
- <prop key="hibernate.generate_statistics">true</prop>
- </props>
- </property>
- <property name="eventListeners">
- <map>
- <entry key="merge">
- <bean class="org.springframework.orm.hibernate3.support.IdTransferringMergeEventListener"/>
- </entry>
- </map>
- </property>
- </bean>
-
- <!-- Transaction manager for a single Hibernate SessionFactory (alternative to JTA) -->
- <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
- <property name="sessionFactory" ref="sessionFactory"/>
- </bean>
-
- <!--define bean of transaction interceptor -->
- <bean id="transactionInterceptor" class="org.springframework.transaction.interceptor.TransactionInterceptor">
- <property name="transactionManager" ref="transactionManager" />
- <property name="transactionAttributes">
- <props>
- <prop key="insert*">PROPAGATION_REQUIRED</prop>
- <prop key="find*">PROPAGATION_REQUIRED,readOnly</prop>
- <prop key="*">PROPAGATION_REQUIRED</prop>
- </props>
- </property>
- </bean>
-
- <!-- define BeanNameAutoProxyCreator-->
- <bean class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
- <property name="beanNames">
- <!-- 所有名字以DAO,Service结尾的bean,将由该"bean后处理器"为其创建事务代理;实际上应该在业务层进行事务管理,这里只是举一个简单例子 -->
- <value>*DAO,*Service</value>
- </property>
- <!-- 下面定义BeanNameAutoProxyCreator所需的事务拦截器-->
- <property name="interceptorNames">
- <list>
- <!-- 可以增加其他的拦截器 -->
- <value>transactionInterceptor</value>
- </list>
- </property>
- </bean>
-
-
- <!-- ========================= BUSINESS OBJECT DEFINITIONS ========================= -->
- <bean id="daoInterface" class="com.pig.dao.DAOInterfaceHibernate3Imp">
- <property name="sessionFactory" ref="sessionFactory"/>
- </bean>
-
- <bean id="sqlPropertyResource" class="com.pig.util.PropertyResource">
- <property name="resourceName" value="com.pig.resource"/>
- </bean>
-
- <bean id="basicDAO" class="com.pig.dao.BasicDAO">
- <property name="dao" ref="daoInterface"/>
- <property name="sqlMapping" ref="sqlPropertyResource"/>
- </bean>
希望大家能多提意见,偶对spring才看了没几天,看了大家的贴子,可以说是照葫芦画瓢 见笑见笑
声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
|
返回顶楼 |
|
|
- lighter
- 等级:
- 性别:
- 文章: 808
- 积分: 1335
- 来自: 广州
|
1、建议楼主打包一下程序,方便看一下,这样拉下来,看得头昏
2、“搞定spring + hibernate+动态hql查询”有标题党的嫌疑,有时间看清楚后再回复你的帖子
|
返回顶楼 |
|
|
- huangpengxiao
- 等级:
- 性别:
- 文章: 302
- 积分: 200
- 来自: 北京
|
严重同意楼上
|
返回顶楼 |
|
|
- daoger
- 等级:
- 性别:
- 文章: 992
- 积分: 914
- 来自: 山东济南
|
这是常用的配置方式中的一种,希望LZ进一步研究,能有更好的文章分享!
|
返回顶楼 |
|
|
- jfy3d
- 等级:
- 性别:
- 文章: 214
- 积分: 270
|
我也这么用 不过是Ibatis的 因为SQL在SQLMAP 里 功能应该比ResourceBundle更多些 连service也简化了
普通GRUD的service 只要 public UserService extends BaseService { } 就可以了
单DAO 确实提高很大生产速度
|
返回顶楼 |
|
|
- eyejava
- 等级:
- 性别:
- 文章: 1484
- 积分: 590
- 来自: 上海
|
BasicDAO 包装DAOInterface 还真有点怪怪的,只是多了一个find方法而已. 另外hql 放在配置文件里面运行期间的参数接收将很麻烦. appgen 已经提供生成dao代码的模版, 这些重复的代码都可以不用手工写的.
|
返回顶楼 |
|
|
- sun_cat
- 等级: 初级会员
- 文章: 16
- 积分: 51
|
昨天晚上本来打算上传附件的 可是老是上传不上去
偶是刚开始学spring 希望大家多多指教
|
返回顶楼 |
|
|