Struts2的使用以及Spring整合Struts2

一、如何单独使用Struts2

(1)引入struts2的jar包

commons-fileupload-1.2.1.jar

freemarker-2.3.15.jar

ognl-2.7.3.jar

struts2-core-2.1.8.jar

xwork-core-2.1.6.jar

(2)在项目的src下引入struts.xml文件

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN"
    "http://struts.apache.org/dtds/struts-2.1.7.dtd">

<struts>

    <package name="hello1" extends="struts-default">
        <action name="hello" class="org.tarena.action.Hello">
            <result>
                success.jsp
            </result>
        </action>
    </package>

</struts>

(3)在项目的web.xml文件下进行struts2的配置

<!-- struts2核心filter -->
  <filter>
      <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>

(4)在项目中编写Action

package org.tarena.action;

public class Hello {

    //output
    private String name;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String execute(){
        name = "陈驰";
        return "success";
    }
}

(5)写两个jsp,hello.jsp跳转到success.jsp

hello.jsp:

<body>
    <a href="/spring004/hello.action">Hello</a>
 </body>

success.jsp:

 <body>
      <p>
          ${name },你好!!!
      </p>
  </body>

最终的效果,点击hello,跳转到success.jsp,显示“陈驰,你好!!!”

二、如何用Spring整合Struts2

(1)在刚才的基础上,还需引入新的jar包

struts2-spring-plugin-2.1.8.jar

spring-web-3.2.8.RELEASE.jar

commons-logging.jar

spring-beans-3.2.8.RELEASE.jar

spring-context-3.2.8.RELEASE.jar

spring-core-3.2.8.RELEASE.jar

spring-expression-3.2.8.RELEASE.jar

(2)在刚才的基础上,引入Spring的配置文件applicationContext.xml,放在src下:

<?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:jdbc="http://www.springframework.org/schema/jdbc"
    xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:util="http://www.springframework.org/schema/util"
    xmlns:jpa="http://www.springframework.org/schema/data/jpa"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
        http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.2.xsd
        http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.2.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
        http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.3.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
        http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd">

    <bean id="helloBean" class="org.tarena.action.Hello" scope="prototype">
    </bean>

</beans>

(3)struts.xml的配置文件中的<action>需要改一下,这里需要注意一个问题,将class属性和Spring容器中的
<bean>元素的id属性保持一致。即原来是利用struts自己去创建一个action,现在是通过整合包
利用class值当作id标识去Spring容器获取Bean对象。

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.1.7//EN"
    "http://struts.apache.org/dtds/struts-2.1.7.dtd">

<struts>

    <package name="hello1" extends="struts-default">
        <!-- 利用struts-spring-plugin.jar去spring容器寻找bean对象
             寻找的规则:利用class属性当作id值去spring容器中获取 -->
        <action name="hello" class="helloBean">
            <result>
                success.jsp
            </result>
        </action>
    </package>

</struts>

(4)最后还要在web.xml中配置一下,添加ContextLoaderListener,在服务器启动时,实例化Spring容器对象。

为什么要实例化Spring容器对象呢?因为原来是创建action,现在是到Spring容器中寻找了,不能找的时候还没实例化,那就找不到了。

 <!-- 指定Spring配置文件位置和名称 -->
  <context-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:applicationContext.xml</param-value>
  </context-param>

  <!-- 在tomcat启动时,实例化Spring容器对象,给struts-spring-plugin.jar使用
                     就不用写ApplicationContext ac = new ... -->
  <!-- listener在tomcat启动时加载 -->
  <listener>
      <listener-class>
          org.springframework.web.context.ContextLoaderListener
      </listener-class>
  </listener>

  <!-- struts2核心filter -->
  <filter>
      <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>

实现的效果,和直接用Struts2一样,说白了,整合之后,就是不让struts2自己创建action了,要在spring容器中找。

时间: 2024-10-05 06:16:29

Struts2的使用以及Spring整合Struts2的相关文章

Spring整合Struts2

Spring整合Struts21整合目的:让Spring的IOC容器去管理Struts2的Action, 2Struts2是web开源框架,Spring要整合Struts2,也就是说要在web应用使用Spring①. 需要额外加入的 jar 包:spring-web-4.0.0.RELEASE.jarspring-webmvc-4.0.0.RELEASE.jar ②. Spring 的配置文件, 和非 WEB 环境没有什么不同 ③. 需要在 web.xml 文件中加入如下配置: <!-- 配置

struts2,hibernate,spring整合笔记(2)

上一话struts2,hibernate,spring整合笔记(1) 接下来继续 配置完struts之后就要开始hibernate的配置 hibernate的环境并不依赖web开发环境,在我第一次配置hibernate时用的javase, 在window-> preferences->java->user libraries,创建一个新的Use libraries,添加相应的jar包 再在项目build path->build configurationpath->add l

struts2,hibernate,spring整合笔记(3)

struts2,hibernate,spring整合笔记(1) struts2,hibernate,spring整合笔记(2) 配好struts和hibernate就要开始spring了 老规矩,还是先导入jar包 spring.jar aspectjrt.jar aspectjwerver.jar cglib-nodep-2.1_3.jar common-logging.jar c3p0-0.9.1.jar 之后加入配置文件src目录下applicationContext.xml <?xml

Spring整合Struts2(接上篇,来自传智播客视频,包含所有源码)

接上篇:Spring整合Hibernate:http://blog.csdn.net/u010800530/article/details/38470321 首先,如果要整合Struts2,则核心拦截器是必不可少的了,然后还要配置ContextLoaderListener监听器. 一.这里是web.xml的配置内容,接下来会详细介绍它的所有配置 <?xml version="1.0" encoding="UTF-8"?> <web-app vers

Spring学习(八)spring整合struts2

一.spring框架对struts等表现层框架的整合原理 : 使用spring的ioc容器管理struts中用于处理请求的Action 将Action配置成ioc容器中的bean 延伸:spring对持久层框架/技术的整合原理 (封装) : 提供模板类封装对应技术/框架的开发流程 通过对模板类的使用,实现对传统开发流程的"代替". 二.整合方式: 插件方式 struts2为了实现对spring框架整合,也提供了一个插件的配置文件struts-plugin.xml struts2-spr

SSH之Spring整合struts2

Struts2+spring整合/result常用类型/拦截器 为什么?通过spring管理Struts2的组件,实现注入 怎么整合? 1.创建项目 2.导包:struts2-spring-plugin struts2-core 3.配置文件:web.xml spring-context.xml web.xml:配置struts2的filert,配置spring的启动加载配置文件,配置spring的监听器 <!-- 配置spring监听,用于初始化spring容器 --> <listen

spring 整合 struts2

整合之前要搞清楚struts2是什么; struts2:表现层框架  增删改查  作用域  页面跳转   异常处理  ajax 上传下载  excel   调用service spring :IOC/DI:bean容器   aop 整合点: 1.struts2的所有对象 交由spring来管理  意味着struts.xml内对象生成方式要发生改变 2.初始化容器的时机  服务器启动时完成 spring已有方案解决 整合步骤: 1.建web 工程 copy jar包   2.copy     st

struts2,hibernate,spring整合笔记(4)--struts与spring的整合

饭要一口一口吃,程序也要一步一步写, 很多看起来很复杂的东西最初都是很简单的 下面要整合struts和spring spring就是我们的管家,原来我们费事费神的问题统统扔给她就好了 先写一个测试方法 package com.hibernate; import static org.junit.Assert.*; import org.hibernate.SessionFactory; import org.junit.Test; import org.springframework.conte

struts2,hibernate,spring整合笔记(1)

今天终于配置好了ssh框架的整合,记录下过程供参考 环境:window8.1,jdk1.7 ,带有javaee的eclipse,也就是说要能发布web项目,TOMCAT服务器,tomcat配置涉及到环境变量,以及在eclipse中添加tomcat不在多述,struts2.1.8,hibernate3.3.2,spring2.5.6 总体结构:                 lib下的jar包有几个不是必要的,但随着项目的发展估计要用到 1.配置struts2 先导入jar包 这个推荐去apps