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"> <display-name>Spring10Favorite</display-name> <listener> <description>Spring的配置</description> <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> <filter> <description>解决Hibernate延迟加载的配置</description> <filter-name>OpenSessionInView</filter-name> <filter-class>org.springframework.orm.hibernate3.support.OpenSessionInViewFilter</filter-class> </filter> <filter-mapping> <filter-name>OpenSessionInView</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <filter> <description>struts2的配置</description> <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> </web-app>
<?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:aop="http://www.springframework.org/schema/aop" xmlns:p="http://www.springframework.org/schema/p" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" 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 http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd" default-autowire="byName"> <!-- 数据源配置 --> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"> <property name="driverClassName" value="oracle.jdbc.OracleDriver" /> <property name="url" value="jdbc:oracle:thin:@localhost:1521:oracle11" /> <property name="username" value="fav" /> <property name="password" value="bdqn" /> </bean> <!-- 会话工厂 --> <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.Oracle10gDialect </prop> <prop key="hibernate.show_sql"> true </prop> </props> </property> <property name="mappingResources"> <list> <value>cn/entity/Favorite.hbm.xml</value> <value>cn/entity/Tag.hbm.xml</value> </list> </property> </bean> <!-- 配置事务管理器 --> <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> <property name="sessionFactory"> <ref bean="sessionFactory" /> </property> </bean> <!-- 配置事务的传播特性 --> <tx:advice id="txAdvice" transaction-manager="txManager"> <tx:attributes> <tx:method name="add*" propagation="REQUIRED" /> <tx:method name="submit*" propagation="REQUIRED" /> <tx:method name="save*" propagation="REQUIRED" /> <tx:method name="insert*" propagation="REQUIRED" /> <tx:method name="del*" propagation="REQUIRED" /> <tx:method name="remove*" propagation="REQUIRED" /> <tx:method name="update*" propagation="REQUIRED" /> <tx:method name="modify*" propagation="REQUIRED" /> <tx:method name="check*" propagation="REQUIRED" /> <tx:method name="do*" propagation="REQUIRED" /> <tx:method name="deal*" propagation="REQUIRED" /> <tx:method name="get*" propagation="SUPPORTS" read-only="true" /> <tx:method name="find*" propagation="SUPPORTS" read-only="true" /> <tx:method name="search*" propagation="SUPPORTS" read-only="true" /> <tx:method name="query*" propagation="SUPPORTS" read-only="true" /> <tx:method name="*" propagation="SUPPORTS" read-only="true" /> </tx:attributes> </tx:advice> <!-- 那些类的哪些方法参与事务 --> <aop:config> <aop:pointcut id="serviceMethod" expression="execution(* cn.biz.*.*(..))" /> <aop:advisor advice-ref="txAdvice" pointcut-ref="serviceMethod"/> </aop:config> <!-- 配置DAO --> <bean id="favDAO" class="cn.dao.impl.FavDAOImpl"> </bean> <bean id="tagDAO" class="cn.dao.impl.TagDAOImpl"> </bean> <!-- 配置服务层 --> <bean id="tagBiz" class="cn.biz.impl.TagBizImpl"> </bean> <bean id="favBiz" class="cn.biz.impl.FavBizImpl"> </bean> <!-- 配置控制层 --> <bean id="favAction" class="cn.action.FavAction" scope="prototype"> </bean> </beans>
相关推荐
<filter-class>org.springframework.web.context.ContextLoaderFilter <filter-name>contextLoaderFilter <url-pattern>/* ``` 这部分配置将Struts2的过滤器和Spring的上下文加载过滤器映射到所有的URL,确保...
【用Myeclipse搭建SSH2架构.doc】可能涵盖使用MyEclipse工具生成SSH项目的步骤,包括创建动态Web项目、添加SSH框架的库依赖、配置Web.xml、生成和配置DAO及Service层代码等。 【Struts2.1、Spring3.0、Hibernate3.3...
全部都经过了测试,共94个jar包(所有包全部兼容) 包括:SSH全套jar包c3p0+ojdbc14.jar+.hbm.xml(模板)+applicationContext.xml+struts.xml+web.xml======
使用myeclipse8.5搭建SSH后,将struts.xml和applicationContext.xml移动到别的地方,示例中为webroot下的config文件夹中,web.xml中需要做的修改示例。其中对于返回上一层方式不同的myeclipse可能不同,如有的用../...
Struts2.3.16.1+Hibernate3.6.10+Spring3.2.8整合 能够运行,没有任何问题 另外附带applicationContext.xml、struts.xml、hibernate.cfg.xml
### SSH框架applicationContext.xml头部文件知识点解析 #### 一、SSH框架简介 SSH框架是Struts+Spring+Hibernate三个开源框架的组合,是中国开发者对这三个框架整合应用的一种简称。其中Struts负责MVC(Model-View-...
在SSH的applicationContext.xml 中如何配制配制事务
总结来说,SSH框架整合涉及了Web层、持久层和业务逻辑层的协同工作,通过XML配置实现了各组件间的交互和业务逻辑。虽然现在有更多现代化的框架和工具,如Spring Boot、MyBatis等,但理解SSH的整合对于掌握Java Web...
这个压缩包文件包含的应该是与SSH框架相关的配置文件以及web.xml配置文件和必要的jar包。这些文件在Java Web应用的开发、运行和部署过程中起着至关重要的作用。下面我们将详细探讨SSH框架的核心组件、配置文件的作用...
ssh框架事务管理applicationContext.xml配置文件
4. **整合过程**:SSH的整合主要包括配置文件的设置,如Spring的applicationContext.xml、Struts的struts-config.xml以及Hibernate的hibernate.cfg.xml。在Spring中配置Bean,包括Action、Service、DAO和...
Spring的XML配置文件(如applicationContext.xml)用于声明Bean及其依赖关系,可以管理所有层的组件,包括数据库连接、服务层对象、DAO(数据访问对象)等。Spring还支持事务管理,可以通过XML配置文件定义事务策略...
Spring的XML配置文件(如applicationContext.xml)用于定义Bean及其依赖关系。 **Hibernate3.x**: Hibernate是一个流行的ORM(Object-Relational Mapping,对象关系映射)框架,它简化了Java应用与数据库之间的...
- **配置文件**:包括Spring的bean配置文件(如`applicationContext.xml`)、Struts2的配置文件(如`struts.xml`)以及Hibernate的配置文件(如`hibernate.cfg.xml`)。这些文件定义了框架的组件、服务以及它们之间...
在web.xml文件中,配置Struts2的Filter和Spring的ContextLoaderListener,以便实现SSH的整合。Filter Dispatcher用于处理HTTP请求,而ContextLoaderListener则初始化Spring的ApplicationContext。 完成上述步骤后,...
- **配置Spring**:创建Spring的配置文件(如applicationContext.xml),定义bean,包括Service层和DAO层,以及数据源和事务管理器。 - **配置Hibernate**:配置hibernate.cfg.xml,设置数据库连接信息,映射Java...
- `applicationContext.xml`:Spring的配置文件,用于配置Bean、数据源、事务管理器等。 - `pom.xml`:Maven的项目配置文件,管理项目的依赖关系。 - `src/main/java`:源代码目录,包含Action类、Service类、DAO类...
整合SSH的关键在于配置文件,包括Struts2的`struts.xml`,Spring的`applicationContext.xml`和Hibernate的`hibernate.cfg.xml`。 在`struts.xml`中,你需要配置Struts2的拦截器栈,声明Action类,并定义结果视图。...
Eclipse 是一个功能强大且功能丰富的集成开发环境(IDE), SSH 架构(Struts + Spring + Hibernate)是 Java Web 开发中常用的架构模式。下面将详细介绍如何使用 Eclipse 搭建 SSH 架构。 一、搭建 SSH 开发环境 ...