博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ssh框架构建项目详解--spring的xml配置详解
阅读量:5226 次
发布时间:2019-06-14

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

   在ssh框架中,spring处于管理者的位置,要对hibernate和struts进行管理

    其中hibernate是用来做持久层的(dao),hibernate对jdbc做了很好的封装,程序员在写dao层就不再需要书写繁琐的sql,

    Struts是做应用层的,他负责调用业务逻辑service层,代替sevlet,由struts来作为控制层  

    ssh的大致流程就是jsp-->struts-->service-->hibernate

   struts负责控制service层,从而控制了service的生命周期,这样层与层之间的久很强,属于耦合.这时使用spring框架就起到了控制Action和service的作用,两者之间就很松散,Spring的Ioc机制(也就是控制反转和依赖注入)正式用在此处

    简单理解,就是在action中,不再需要去new对象,而是用过spring进行自动注入,包括po实体类和service对象都通过springIoc进行自动注入

    1.控制反转:  依赖关系传统做法是通过代码直接操控,通过spring控制反转交给容器处理

    2.依赖注入:组件之间的依赖关系由容器决定,由容器将依赖关系注入到组件之中

   使用spring框架的第二个好处:

    1.在jdbc中事务提交的异常处理都是通过try/catch来完成的,我们需要手动进行提交,回滚等步骤,现在我们吧事务管理交给hibernate处理,是通过

      SessionFactory的创建和维护来处理事务的,而Spring也对SessionFactory进行了整合,因此我们不需要再hibernate-config.xml中对     SessionFactory进行配置

  

   spring框架需要的jar包自行百度..这里只写一下spring的基本配置

    

<?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"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
">

 

<!-- 使用annotation(注解) -->

<context:annotation-config></context:annotation-config>
<!-- 自动扫描Action,Service,Dao,po -->
<!-- <context:component-scan base-package="com.lemon.action,com.lemon.service,com.lemon.dao,com.lemon.po"></context:component-scan> -->
<context:component-scan base-package="com.crm"></context:component-scan>

 

<!-- 配置数据源 -->

<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="url" value="jdbc:mysql://localhost:3306/crm?characterEncoding=UTF-8">
</property>
<property name="username" value="root"></property>
<property name="password" value="ou134568"></property>
<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
</bean>

 

<!-- 生成SessionFactory -->

<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<!-- 使用某个数据源生成SessionFactory -->
<property name="dataSource" ref="dataSource"></property>
<!-- 配置Hibernate的相关属性 -->
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
</props>
</property>
<property name="annotatedClasses">
<list>
<!-- <value>com.lemon.po.User</value>
<value>com.lemon.po.Department</value> -->
<value>com.crm.po.CrmCustomer</value>
<value>com.crm.po.CrmCustomerContact</value>
<value>com.crm.po.SysCustomerLevel</value>
<value>com.crm.po.SysCustomerState</value>
<value>com.crm.po.SysUserInfo</value>
</list>
</property>
</bean>

 

<!-- 配置事务管理器 -->

<bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory"></property>
</bean>

 

<!-- 配置事务管理的通知 -->

<tx:advice id="transactionAdvice" transaction-manager="transactionManager">
<tx:attributes>
<!-- 配置事务的传播特性 -->
<tx:method name="find*" read-only="true"/>
<tx:method name="get*" read-only="true"/>
<tx:method name="query*" read-only="true"/>
<!-- 本操作内如果有事务,则使用事务,如果没有,则开启新的事务 -->
<tx:method name="add*" propagation="REQUIRED"/>
<tx:method name="update*" propagation="REQUIRED"/>
<tx:method name="delete*" propagation="REQUIRED"/>
</tx:attributes>
</tx:advice>

 

<!-- 切面配置 -->

<aop:config>
<!-- <aop:pointcut expression="execution(* com.lemon.service.impl.*.*(..))" id="transactionPointcut"/> -->
<aop:pointcut expression="execution(* com.crm..service.impl.*.*(..))" id="transactionPointcut"/>
<aop:advisor advice-ref="transactionAdvice" pointcut-ref="transactionPointcut"/>
</aop:config>

 

</beans>

 

    

     

转载于:https://www.cnblogs.com/ou134568/p/6916934.html

你可能感兴趣的文章
.net 文本框只允许输入XX,(正则表达式)
查看>>
Python 第四十五章 MySQL 内容回顾
查看>>
实验2-2
查看>>
MongoDB遇到的疑似数据丢失的问题。不要用InsertMany!
查看>>
android smack MultiUserChat.getHostedRooms( NullPointerException)
查看>>
实用的VMware虚拟机使用技巧十一例
查看>>
监控工具之---Prometheus 安装详解(三)
查看>>
不错的MVC文章
查看>>
IOS Google语音识别更新啦!!!
查看>>
[置顶] Linux终端中使用上一命令减少键盘输入
查看>>
BootScrap
查看>>
路冉的JavaScript学习笔记-2015年1月23日
查看>>
Mysql出现(10061)错误提示的暴力解决办法
查看>>
2018-2019-2 网络对抗技术 20165202 Exp3 免杀原理与实践
查看>>
NPM慢怎么办 - nrm切换资源镜像
查看>>
Swift - UIView的常用属性和常用方法总结
查看>>
Swift - 异步加载各网站的favicon图标,并在单元格中显示
查看>>
【Python学习笔记】1.基础知识
查看>>
梦断代码阅读笔记02
查看>>
selenium学习中遇到的问题
查看>>