标签:映射 split nec 常量 ann 增强 默认 ppi mysqld
AOP注解方式
JDBC模板技术
Spring事务管理
需求分析
技术分析之SSH框架开发的基本回顾
技术分析之SSH三大框架需要的jar包
Struts2框架
Hibernate框架
Spring框架
技术分析之SSH三大框架需要的配置文件
Struts2框架
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
Hibernate框架
Spring框架
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
技术分析之Spring框架整合Struts2框架
编写CustomerAction接收请求,在struts.xml中完成Action的配置
<package name="crm" extends="struts-default" namespace="/">
<action name="customer_*" class="com.itheima.web.action.CustomerAction" method="{1}">
</action>
</package>
在Action中获取到service(开发不会使用,因为麻烦)
WebApplicationContextUtils.getWebApplicationContext(ServletActionContext.getServletContext());
来获取,但是这种方式编写代码太麻烦了!!Spring整合Struts2框架的第一种方式(Action由Struts2框架来创建)
<constant name="struts.objectFactory" value="spring" />
开启一个常量,如果该常量开启,那么下面的常量就可以使用struts.objectFactory.spring.autoWire = name
,该常量是可以让Action的类来自动装配Bean对象!!Spring整合Struts2框架的第二种方式(Action由Spring框架来创建)(推荐大家来使用的)
<bean id="customerAction" class="com.itheima.web.action.CustomerAction" scope="prototype">
struts.xml中的修改,把全路径修改成ID值
<action name="customer_*" class="customerAction" method="{1}">
第二种方式需要有两个注意的地方
技术分析之Spring框架整合Hibernate框架(带有hibernate.cfg.xml的配置文件。强调:不能加绑定当前线程的配置)
编写映射的配置文件,并且在hibernate.cfg.xml的配置文件中引入映射的配置文件
在applicationContext.xml的配置文件,配置加载hibernate.cfg.xml的配置
<bean id="sessionFactory" class="org.springframework.orm.hibernate5.LocalSessionFactoryBean">
<property name="configLocation" value="classpath:hibernate.cfg.xml"/>
</bean>
在CustomerDaoImpl中想完成数据的添加,Spring框架提供了一个HibernateDaoSupport的工具类,以后DAO都可以继承该类!!
public class CustomerDaoImpl extends HibernateDaoSupport implements CustomerDao {
public void save(Customer c) {
System.out.println("持久层...");
this.getHibernateTemplate().save(c);
}
}
<bean id="customerDao" class="com.itheima.dao.CustomerDaoImpl">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
开启事务的配置
<bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory"/>
</bean>
<tx:annotation-driven transaction-manager="transactionManager"/>
@Transactional
技术分析之Spring框架整合Hibernate框架(不带有hibernate.cfg.xml的配置文件)
Hibernate配置文件中
开始进行配置
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
<property name="driverClass" value="com.mysql.jdbc.Driver"/>
<property name="jdbcUrl" value="jdbc:mysql:///xxx"/>
<property name="user" value="root"/>
<property name="password" value="root"/>
</bean>
<bean id="transactionManager" class="org.springframework.orm.hibernate5.HibernateTransactionManager">
<property name="dataSource" ref="dataSource"/>
</bean>
<!-- 配置其他的属性 -->
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.format_sql">true</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
<!-- 配置映射 -->
<property name="mappingResources">
<list>
<value>com/itheima/domain/Customer.hbm.xml</value>
</list>
</property>
技术分析之Hibernate的模板的常用的方法
增删改的操作:
save(Object obj);
update(Object obj);
delete(Object obj);
查询的操作:
Object get(Class c,Serializable id);
Object load(Class c,Serializable id);
查询多条记录:
List find(String hql,Object... args);
技术分析之延迟加载问题
使用延迟加载的时候,再WEB层查询对象的时候程序会抛出异常!
原因是延迟加载还没有发生SQL语句,在业务层session对象就已经销毁了,所以查询到的JavaBean对象已经变成了托管态对象!
注意:一定要先删除javassist-3.11.0.GA.jar
包(jar包冲突了)
解决办法非常简单,Spring框架提供了一个过滤器,让session对象在WEB层就创建,在WEB层销毁。只需要配置该过滤器即可
<filter>
<filter-name>OpenSessionInViewFilter</filter-name>
<filter-class>org.springframework.orm.hibernate5.support.OpenSessionInViewFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>OpenSessionInViewFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
标签:映射 split nec 常量 ann 增强 默认 ppi mysqld
原文地址:http://blog.csdn.net/inke88/article/details/68067752