`
jameszhao83
  • 浏览: 67491 次
  • 性别: Icon_minigender_1
  • 来自: 西安
社区版块
存档分类
最新评论

ssh整合配置struts1.x

阅读更多
struts1.x部分
struts.config.xml
<?xml version="1.0" encoding="ISO-8859-1" ?>

<!DOCTYPE struts-config PUBLIC
          "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN"
          "http://jakarta.apache.org/struts/dtds/struts-config_1_2.dtd">

<struts-config>
    <message-resources parameter="MessageResources" />
</struts-config>
web.xml部分
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
 
  <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
      <param-name>config</param-name>
      <param-value>/WEB-INF/struts-config.xml</param-value>
    </init-param>
    <init-param>
      <param-name>debug</param-name>
      <param-value>2</param-value>
    </init-param>
    <init-param>
      <param-name>detail</param-name>
      <param-value>2</param-value>
    </init-param>
    <load-on-startup>2</load-on-startup>
  </servlet>


  <!-- Standard Action Servlet Mapping -->
  <servlet-mapping>
    <servlet-name>action</servlet-name>
    <url-pattern>*.do</url-pattern>
  </servlet-mapping> 

   <context-param>
  <param-name>contextConfigLocation</param-name>
  <param-value>classpath*:applicationContext-*.xml</param-value>
  </context-param>
  
   <listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
   </listener>
  
  <filter>

hibernate部分
hibernate.cfg.xml
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">

<hibernate-configuration>
<session-factory>
<property name="hibernate.connection.url">jdbc:mysql://localhost/spring_struts_hibernate</property>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">bjsxt</property>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.show_sql">true</property>
<property name="hibernate.hbm2ddl.auto">update</property>
</session-factory>
</hibernate-configuration>
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: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-2.0.xsd
           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">
<!-- 配置sessionFactory -->
<bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="configLocation">
<value>classpath:hibernate.cfg.xml</value>
</property>
</bean>          

<!-- 配置事务管理器 -->
<bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory">
<ref bean="sessionFactory"/>
</property>
</bean>

<!-- 配置事务的传播特性 -->
<tx:advice id="txAdvice" transaction-manager="transactionManager">
<tx:attributes>
<tx:method name="add*" propagation="REQUIRED"/>
<tx:method name="del*" propagation="REQUIRED"/>
<tx:method name="modify*" propagation="REQUIRED"/>
<tx:method name="*" read-only="true"/>
</tx:attributes>
</tx:advice>

<!-- 那些类的哪些方法参与事务 -->
<aop:config>
<aop:pointcut id="allManagerMethod" expression="execution(* xxx.xxx.*.*(..))"/>
<aop:advisor pointcut-ref="allManagerMethod" advice-ref="txAdvice"/>
</aop:config>
</beans>

分享到:
评论

相关推荐

    struts1.x 常用知识详解

    3. **配置文件**:`struts-config.xml`是Struts1.x的核心配置文件,用于定义Action、ActionForm、ActionForward等元素,以及数据源和国际化资源等。 二、ActionForm与数据绑定 1. **ActionForm**:ActionForm对象...

    Struts1.x+Spring+Hibernate开发实例

    2. **配置文件**:如struts-config.xml、spring-context.xml、hibernate.cfg.xml,分别配置Struts1.x的动作映射、Spring的bean定义和Hibernate的数据源及实体映射。 3. **实体类**:表示数据库中的表,通常会包含...

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

    此外,还需要配置struts.properties以设置Struts2的基础属性。 2. **Spring** 配置:主要有applicationContext.xml,用于定义bean、依赖注入、事务管理等。Spring还负责管理Hibernate SessionFactory,并通过AOP...

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

    Struts1.x、Spring 2.x 和 Hibernate3.x 是经典的Java Web开发框架组合,被称为SSH(Struts-Spring-Hibernate)集成。这个jar包集合包含了这三个框架的核心库和其他相关依赖,便于开发者快速搭建一个基于MVC模式的...

    SSH框架整合包3.x

    SSH整合包3.x中包含的内容: - **整合Demo**:这是一个完整的示例项目,展示了如何在实际开发中整合这三个框架,包括如何配置XML文件,如何编写Action类,以及如何建立模型对象与数据库表的映射。 - **XML配置文件**...

    Struts1.x+sping2.0+hibernate3.0

    Struts1.x、Spring2.0 和 Hibernate3.0 是经典的 Java Web 开发框架组合,被称为 SSH(Struts + Spring + Hibernate)。这个组合在过去的十几年里被广泛应用,为开发人员提供了一个强大的、全面的企业级应用解决方案...

    struts1.x+spring+hibernate集成例子(包含所有jar包,ehcache二级缓存)

    Struts1.x、Spring 和 Hibernate 是Java Web开发中经典的“SSH”框架组合,它们各自承担着不同的职责。Struts1.x 是一个 MVC 框架,负责处理用户请求和业务逻辑;Spring 提供了依赖注入和面向切面编程,简化了组件的...

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

    SSH整合是Java Web开发中的一个经典组合,由Spring、Struts1.x和Hibernate三个框架构成。这个整合提供了全面的企业级应用解决方案,涵盖了控制层、业务层和服务数据持久化层的管理。下面将详细讲解SSH整合的主要知识...

    ssh整合超详细步骤.txt

    ##### 步骤2:配置Struts2 接下来,在`WebRoot/WEB-INF/web.xml`文件中添加过滤器,以便于处理Struts2相关的请求: ```xml &lt;filter-name&gt;struts &lt;filter-class&gt;org.apache.struts2.dispatcher.ng.filter....

    基于eclipse的struts2.x+hibernate3.x+spring3.x整合文档及实例源码

    综上所述,"基于eclipse的struts2.x+hibernate3.x+spring3.x整合文档及实例源码"提供了一个完整的SSH整合教程,通过下载的源码和文档,开发者可以学习并实践SSH的集成,了解每个框架在实际项目中的作用和它们协同...

    Spring3.x_Struts2.x_Hibernate3.x整合

    2. **配置Struts2**:在struts.xml中,配置Action类和对应的Result,同时通过Spring插件(struts2-spring-plugin)将Action类交由Spring管理。 3. **配置Hibernate**:设置hibernate.cfg.xml文件,配置数据库连接...

    struts2.x hibernate spring 整合

    1. 配置Struts2:设置struts2的核心过滤器,编写struts.xml配置文件,定义Action和Result。 2. 配置Hibernate:创建hibernate.cfg.xml配置文件,定义实体类与数据库表的映射,配置SessionFactory。 3. 集成Spring:...

    Struts2 2.3.15 + Hibernate 3.x.x + Spring 3.2.3整合JAR包

    3. **配置Struts2**:创建struts.xml配置文件,定义全局和特定Action的配置,包括结果类型、拦截器栈等。 4. **配置Hibernate**:设置hibernate.cfg.xml文件,包括数据库连接信息、实体类映射等。还需要创建...

    ssh整合jar包(包括struts1.2)

    2. **配置Struts**:修改Struts的配置文件(如`struts-config.xml`),定义Action类、ActionForm以及与Spring的整合,比如使用Spring的`org.springframework.web.struts.DelegatingActionProxy`作为Action的实现。...

    Spring3.x_Struts2.x_Hibernate3.x整合之声明式事务配置

    事务声明在Dao中,但是通常都会在Service中来处理多个业务逻辑的关系,如:删除,更新等,此时如果在执行了一个步骤之后抛出抛出异常就会导致数据部完整,所以事务不应该在Dao中处理,而应该在Service中处理,这也是...

    ssh;整合流程;xml配置文件;Struts2

    例如,Struts2需要的包有struts2-core-x.x.x.jar等;Spring则需要spring-context-x.x.x.jar等;Hibernate则包括hibernate-core-x.x.x.jar等。 2. **配置Struts2的struts.xml文件**:定义Action映射以及结果页面的...

    ssh整合例子

    2. 配置Struts1.x或Struts2:编写配置文件,定义Action、ActionMapping和Result。 3. 创建Model:定义业务对象,这些对象可能与Hibernate的实体类重合。 4. 配置Spring:定义Bean,包括Service和DAO,以及它们之间的...

    SSH/SSJ整合,Spring 3.1.0M1,Hibernate 3.X,struts2.1.8

    3. 集成Struts2:在web.xml中配置Struts2的前端控制器,编写Action类并关联业务逻辑。 4. 事务管理:利用Spring的PlatformTransactionManager进行全局事务控制。 5. 错误和异常处理:设置Struts2的全局结果,处理...

    Spring4.0.6+Struts2.3.16.3整合架包下载,ss整合jar架包下载,最新spring和struts整合架包下载

    "最新ssh整合" 或 "最新ssh框架下载" 指的是获取这些框架最新版本的集成包,这有助于开发者获取最新的功能和安全补丁,避免使用已知问题的旧版本。 通过 SS 整合jar架包下载,开发者可以快速地搭建起一个具备 ...

Global site tag (gtag.js) - Google Analytics