SSH整合 第三篇 Spring的加入

时间:2022-08-03 19:46:37

1、思路和想法。

目前理解到的,觉得是的,可能的,应该这样的………………

Spring的两大核心是IoC和AOP

Ioc:帮助实例化对象,加载到容器中,在注入到需要用到的地方。这样就可以减少在不同的方法/类中新建对象了。同时,实现类改变了(基于接口),在xml中改了就好。比较适合单例编程。那么我们将Hibernate常常用到的SessionFactory交给Spring。

AOP:与数据库打交道,事务管理是必须的,什么ACID之类的。那么AOP就比较适合了。

2、整合

继续在之前的工程加上spring的jar。

1)、Spring-3.2.0

SSH整合 第三篇 Spring的加入

2)、使用数据源。

选用dbcp

commons-dbcp-xxx.jar

commons-pool-xxx.jar

SSH整合 第三篇 Spring的加入

3)、SessionFactory

在spring的配置文件中,配置SessionFactory(交给Spring)管理。Spring配置文件这里命名为applicationContext.xml

 <!-- sessionFactory -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<!-- 数据源 -->
<property name="dataSource" ref="dataSource" />
<!-- 注解的实体类 ,扫描包 -->
<property name="packagesToScan">
<list>
<value>com.xzw.ssh.pojo</value>
</list>
</property> <!-- sessionFactory的一些其他设置。 -->
<property name="hibernateProperties">
<props>
<!-- 通过getCurrentSession创建的session会绑定到当前线程 -->
<prop key="current_session_context_class">thread</prop>
<!--方言 -->
<prop key="dialect">org.hibernate.dialect.MySQLDialect</prop>
<!--输出sql -->
<prop key="hibernate.show_sql">true</prop>
<!-- sql格式化输出-->
<prop key="hibernate.format_sql">true</prop>
</props>
</property>
</bean>

applicationContext

4)、mysql.properties

连接到数据库的基本属性。本测试放在classpath下的db文件

jdbc.driver=com.mysql.jdbc.Driver

jdbc.url=jdbc:mysql://localhost:3306/nwssh

jdbc.username=root

jdbc.password=root

5)、datasource的xml配置。

在applicationContext.xml加上。

 <!-- 加载配置文件 db/mysql.properties -->
<context:property-placeholder location="classpath:db/mysql.properties" /> <!-- 使用dbcp数据源 -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName" value="${jdbc.driver}" />
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
<property name="maxActive" value="15" />
<property name="maxIdle" value="3" />
</bean>

加上部分

6)、测试SessionFactory

加上mysql的jbdc包,配置好database,就可以先测试一下SessionFactory是否能用了。

到目前的配置文件是

 <beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc"
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-3.2.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">
<!-- 加载配置文件 db/mysql.properties -->
<context:property-placeholder location="classpath:db/mysql.properties" /> <!-- 使用dbcp数据源 -->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName" value="${jdbc.driver}" />
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
<property name="maxActive" value="15" />
<property name="maxIdle" value="3" />
</bean> <!-- sessionFactory -->
<bean id="sessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<!-- 数据源 -->
<property name="dataSource" ref="dataSource" />
<!-- 注解的实体类 ,扫描包 -->
<property name="packagesToScan">
<list>
<value>com.xzw.ssh.pojo</value>
</list>
</property> <!-- sessionFactory的一些其他设置。 -->
<property name="hibernateProperties">
<props>
<!-- 通过getCurrentSession创建的session会绑定到当前线程 -->
<prop key="current_session_context_class">thread</prop>
<!--方言 -->
<prop key="dialect">org.hibernate.dialect.MySQLDialect</prop>
<!--输出sql -->
<prop key="hibernate.show_sql">true</prop>
<!-- sql格式化输出 -->
<prop key="hibernate.format_sql">true</prop>
</props>
</property>
</bean> </beans>

applicationContext

java测试代码

 public class H_A_S_Test {

     //得到spring容器
private ApplicationContext applicationContext = new ClassPathXmlApplicationContext("classpath:spring/applicationContext.xml"); @Test
public void test1() throws Exception {
//得到SessionFactory
SessionFactory sessionFactory = (SessionFactory) applicationContext.getBean("sessionFactory"); Session session =sessionFactory.openSession(); User user = (User) session.get(User.class, "u1"); System.out.println(user.getUsername());
}
}

java测试代码

如果上面的测试能得到对应的User就成功了。