Spring S2SH集成开发
程序员文章站
2022-05-21 09:20:04
...
<!--
S2SH 集成开发配置 Struts2.0 + Spring 3 + Hibernate 3 开发框架
大纲:
1、配置Struts2.0 环境
2、配置Spring 环境
3、配置Hibernate 环境
提示:相关jar包
知识点:使用自动生成的DAO层,存在数据安全性问题,所以必须引入事务管理;AOP
A、web.xml 配置
B、struts.xml 配置
C、application.xml 配置
-->
S2SH 集成开发配置 Struts2.0 + Spring 3 + Hibernate 3 开发框架
大纲:
1、配置Struts2.0 环境
2、配置Spring 环境
3、配置Hibernate 环境
提示:相关jar包
知识点:使用自动生成的DAO层,存在数据安全性问题,所以必须引入事务管理;AOP
A、web.xml 配置
<?xml version="1.0" encoding="UTF-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> <!-- 配置Struts2.0 的环境 --> <filter> <filter-name>struts</filter-name> <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class> </filter> <filter-mapping> <filter-name>struts</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <!-- 配置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> </web-app>
B、struts.xml 配置
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd" > <struts> <!-- 说明struts 与 spring 的关系 --> <constant name="struts.objectFactory" value="spring"></constant> <include file="user.xml"></include> </struts>
C、application.xml 配置
<?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:p="http://www.springframework.org/schema/p" 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.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd "> <!-- 配置数据源beans --> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"> </property> <property name="url" value="jdbc:oracle:thin:@localhost:1521:ORCL"> </property> <property name="username" value="scott"></property> <property name="password" value="tiger"></property> </bean> <!-- 配置SessionFactory --> <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource"> <ref bean="dataSource" /> </property> <!-- 方言,认证语言 --> <property name="hibernateProperties"> <props> <prop key="hibernate.dialect"> org.hibernate.dialect.Oracle9Dialect </prop> </props> </property> <!-- 配置映射关系,加入持久化对象的配置文件 --> <property name="mappingResources"> <list> <value>com/svse/entity/TUser.hbm.xml</value> </list> </property> </bean> <!-- 事务:AOP , 说明:由于自动生成的DAO 存在数据安全性的问题,所以必须在Spring 中 进行事务的结合,确保 数据的安全性; org.springframework.orm.hibernate3.HibernateTransactionManager : Hibenate事务管理 --> <!-- 声明一个事务管理者 --> <bean id="hibernateTransactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> <!-- 接收通知,使用事务 --> <property name="sessionFactory" ref="sessionFactory"></property> </bean> <!-- 事务管理器 --> <tx:advice id="userTransaction" transaction-manager="hibernateTransactionManager"> <tx:attributes> <tx:method name="add*" propagation="REQUIRED" /> <tx:method name="update*" propagation="REQUIRED" /> <tx:method name="del*" propagation="REQUIRED" /> <tx:method name="*" read-only="true" /> </tx:attributes> </tx:advice> <!-- 注入AOP切面,说明事务使用的时刻 --> <aop:config> <aop:pointcut expression="execution(* com.svse.impl.*.*(..))" id="allMethods" /> <!-- 通过aop:advisor 引用具体的事务,以及事务使用的时刻 --> <aop:advisor advice-ref="userTransaction" pointcut-ref="allMethods" /> </aop:config> <!-- 注入DAO , 并指定引用关系 --> <bean id="TUserDAO" class="com.svse.dao.TUserDAO"> <property name="sessionFactory"> <ref bean="sessionFactory" /> </property> </bean> <!-- 注入业务逻辑 --> <bean id="userImpl" class="com.svse.impl.UserImpl"> <property name="userdao" ref="TUserDAO"></property> </bean> <!-- 注入Action ,声明关系,并指明为代理模式--> <bean id="userAction" class="com.svse.action.UserAction" scope="prototype"> <property name="userService" ref="userImpl"></property> </bean> </beans>
-->
上一篇: clojure学习笔记
推荐阅读
-
Eclipse搭建spring开发环境图文教程(推荐)
-
基于spring boot 1.5.4 集成 jpa+hibernate+jdbcTemplate(详解)
-
Spring boot集成RabbitMQ的示例代码
-
macOS下Spring Boot开发环境搭建教程
-
Spring boot 集成Dubbox的方法示例
-
Spring MVC+FastJson+Swagger集成的完整实例教程
-
spring cloud 阿波罗 apollo 本地开发环境搭建过程
-
移动开发Spring Boot外置tomcat教程及解决方法
-
浅谈Spring Boot 开发REST接口最佳实践
-
Spring 5.0集成log4j2日志管理的示例代码