博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring3+hibernate4 sessionFactory 注入(最新修改)
阅读量:5931 次
发布时间:2019-06-19

本文共 2934 字,大约阅读时间需要 9 分钟。

  hot3.png

<?xml version="1.0" encoding="UTF-8"?>

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://www.springframework.org/schema/context
       http://www.springframework.org/schema/context/spring-context.xsd
       http://www.springframework.org/schema/tx
       http://www.springframework.org/schema/tx/spring-tx.xsd">
<!-- 数据库连接池 -->
<!-- 本地 -->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> 
<property name="driverClassName" value="com.mysql.jdbc.Driver" /> <property 
name="url" value="jdbc:mysql://localhost:3306/blog" /> <property name="username" 
value="root" /> <property name="password" value="123456" /> </bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource"></property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">
org.hibernate.dialect.MySQLDialect
</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
<property name="packagesToScan" value="com.blog.entity" />
</bean>
<bean id="transactionManager"
class="org.springframework.orm.hibernate4.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory"></property>
<property name="dataSource" ref="dataSource" />
</bean>
<tx:annotation-driven transaction-manager="transactionManager" />
<!-- 用注解方式注入bean -->
<context:annotation-config />
<context:component-scan base-package="com.blog" />
</beans>

package com.blog.dao;

import javax.annotation.Resource;

import org.hibernate.Session;

import org.hibernate.SessionFactory;

import org.springframework.stereotype.Component;
/**
 * Created with IntelliJ IDEA. User: Juyan Date: 12-12-15 Time: 下午8:49 To change
 * this template use File | Settings | File Templates.
 */
@Component
public class SuperDao {
@Resource
SessionFactory sessionFactory;
public Session getSession() {
Session session = sessionFactory.getCurrentSession();
return session;
}
}

@Repository
public class UserDAO extends SuperDao {
private static final Logger log = Logger.getLogger(UserDAO.class);
// property constants
public static final String EMAIL = "email";
public static final String PASS_WORD = "passWord";
public static final String USER_NAME = "userName";
/*
* (non-Javadoc)
* @see com.blog.dao.UserService#save(com.blog.entity.User)
*/
public void save(User transientInstance) {
log.info("saving User instance");
try {
getSession().save(transientInstance);
log.info("save successful");
} catch (RuntimeException re) {
log.error("save failed", re);
throw re;
}
}
......

转载于:https://my.oschina.net/qsyan/blog/96485

你可能感兴趣的文章
我的友情链接
查看>>
indexjsp
查看>>
macOS 自定义场景以快速切换不同的网络连接参数
查看>>
nsqlookupd 入口文件分析
查看>>
DB21
查看>>
UDP发送和接收数据
查看>>
Quartz在Spring中比较直观的一种配置
查看>>
Ubuntu环境下如何安装LAMP组件?
查看>>
信息加密与Linux服务器实现CA
查看>>
Android之高仿手机QQ聊天
查看>>
我的友情链接
查看>>
python urllib2
查看>>
centos下的SVN服务器搭建
查看>>
常见系统故障之-bash
查看>>
preg_replace 一个有意思的参数
查看>>
PHP 连接 MYSQL
查看>>
Mysql数据库四大特性、事物的四个隔离、基本MySQL语句、独立表空间
查看>>
安装supervisor
查看>>
DEDE让广告延时加载显示,大大提高网页访问的速度
查看>>
apache常用的两种工作模式 prefork和worker
查看>>