`
chaoyi
  • 浏览: 309182 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

SSH web.xml+applicationContext.xml

阅读更多

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>

 

 

分享到:
评论

相关推荐

    struts.xml和applicationContext.xml、web.xml的配置

    &lt;filter-class&gt;org.springframework.web.context.ContextLoaderFilter &lt;filter-name&gt;contextLoaderFilter &lt;url-pattern&gt;/* ``` 这部分配置将Struts2的过滤器和Spring的上下文加载过滤器映射到所有的URL,确保...

    SSH(Struts2.1+Spring2.X+Hibernate3.X)整合,新手必备

    【用Myeclipse搭建SSH2架构.doc】可能涵盖使用MyEclipse工具生成SSH项目的步骤,包括创建动态Web项目、添加SSH框架的库依赖、配置Web.xml、生成和配置DAO及Service层代码等。 【Struts2.1、Spring3.0、Hibernate3.3...

    SSH框架搭建全套jar包+全套c3p0+ojdbc14.jar+各种xml(模板)

    全部都经过了测试,共94个jar包(所有包全部兼容) 包括:SSH全套jar包c3p0+ojdbc14.jar+.hbm.xml(模板)+applicationContext.xml+struts.xml+web.xml======

    struts、applicationContext配置文件移动后web.xml配置示例

    使用myeclipse8.5搭建SSH后,将struts.xml和applicationContext.xml移动到别的地方,示例中为webroot下的config文件夹中,web.xml中需要做的修改示例。其中对于返回上一层方式不同的myeclipse可能不同,如有的用../...

    Struts2.3.16.1+Hibernate3.6.10+Spring3.2.8整合

    Struts2.3.16.1+Hibernate3.6.10+Spring3.2.8整合 能够运行,没有任何问题 另外附带applicationContext.xml、struts.xml、hibernate.cfg.xml

    SSH框架applicationContext.xml头部文件

    ### SSH框架applicationContext.xml头部文件知识点解析 #### 一、SSH框架简介 SSH框架是Struts+Spring+Hibernate三个开源框架的组合,是中国开发者对这三个框架整合应用的一种简称。其中Struts负责MVC(Model-View-...

    SSH中applicationContext.xml如何配制事务

    在SSH的applicationContext.xml 中如何配制配制事务

    SSH三大框架整合 struts2(使用xml配置)+hibernate(使用xml配置)+spring(使用xml配置)

    总结来说,SSH框架整合涉及了Web层、持久层和业务逻辑层的协同工作,通过XML配置实现了各组件间的交互和业务逻辑。虽然现在有更多现代化的框架和工具,如Spring Boot、MyBatis等,但理解SSH的整合对于掌握Java Web...

    SSH框架配置文件及web.xml jar包

    这个压缩包文件包含的应该是与SSH框架相关的配置文件以及web.xml配置文件和必要的jar包。这些文件在Java Web应用的开发、运行和部署过程中起着至关重要的作用。下面我们将详细探讨SSH框架的核心组件、配置文件的作用...

    ssh框架事务管理applicationContext.xml配置文件

    ssh框架事务管理applicationContext.xml配置文件

    ssh(spring+strut1.x+hibernate)整合完整教程 附带包

    4. **整合过程**:SSH的整合主要包括配置文件的设置,如Spring的applicationContext.xml、Struts的struts-config.xml以及Hibernate的hibernate.cfg.xml。在Spring中配置Bean,包括Action、Service、DAO和...

    ssh,XML配置

    Spring的XML配置文件(如applicationContext.xml)用于声明Bean及其依赖关系,可以管理所有层的组件,包括数据库连接、服务层对象、DAO(数据访问对象)等。Spring还支持事务管理,可以通过XML配置文件定义事务策略...

    struts1.x+spring 2.x+hibernate3.x jar包 组合

    Spring的XML配置文件(如applicationContext.xml)用于定义Bean及其依赖关系。 **Hibernate3.x**: Hibernate是一个流行的ORM(Object-Relational Mapping,对象关系映射)框架,它简化了Java应用与数据库之间的...

    sshweb.zip

    - **配置文件**:包括Spring的bean配置文件(如`applicationContext.xml`)、Struts2的配置文件(如`struts.xml`)以及Hibernate的配置文件(如`hibernate.cfg.xml`)。这些文件定义了框架的组件、服务以及它们之间...

    hibernate3[1].2+spring2.5+struts2.1配置过程

    在web.xml文件中,配置Struts2的Filter和Spring的ContextLoaderListener,以便实现SSH的整合。Filter Dispatcher用于处理HTTP请求,而ContextLoaderListener则初始化Spring的ApplicationContext。 完成上述步骤后,...

    整合SSH_Struts2.3.4.1+Spring3.1.1+Hibernate4.1.6

    - **配置Spring**:创建Spring的配置文件(如applicationContext.xml),定义bean,包括Service层和DAO层,以及数据源和事务管理器。 - **配置Hibernate**:配置hibernate.cfg.xml,设置数据库连接信息,映射Java...

    struts1.x + hibernate 3+spring 3 集成实例

    - `applicationContext.xml`:Spring的配置文件,用于配置Bean、数据源、事务管理器等。 - `pom.xml`:Maven的项目配置文件,管理项目的依赖关系。 - `src/main/java`:源代码目录,包含Action类、Service类、DAO类...

    ssh(struts2[1].2.1+_hibernate3.6+spring3.0.5)整合配置.doc

    整合SSH的关键在于配置文件,包括Struts2的`struts.xml`,Spring的`applicationContext.xml`和Hibernate的`hibernate.cfg.xml`。 在`struts.xml`中,你需要配置Struts2的拦截器栈,声明Action类,并定义结果视图。...

    用eclipse搭建SSH架构(struts + spring + hibernate)

    Eclipse 是一个功能强大且功能丰富的集成开发环境(IDE), SSH 架构(Struts + Spring + Hibernate)是 Java Web 开发中常用的架构模式。下面将详细介绍如何使用 Eclipse 搭建 SSH 架构。 一、搭建 SSH 开发环境 ...

Global site tag (gtag.js) - Google Analytics