加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 大数据 > 正文

spring之整合struts2

发布时间:2020-12-15 01:12:56 所属栏目:大数据 来源:网络整理
导读:首先将以下jar包加入到lib文件夹中: 基础目录: Person.java package com.gong.spring.struts2.beans; public class Person { private String username; void setUsername(String username) { this .username = username; } hello(){ System.out.println( "

首先将以下jar包加入到lib文件夹中:

基础目录:

Person.java

package com.gong.spring.struts2.beans;

public class Person {
    
    private String username;
    
    void setUsername(String username) {
        this.username = username;
    }
    
     hello(){
        System.out.println("My name is " + username);
    }
    
}

PersonService.java

 com.gong.spring.struts2.services;

 PersonService {
    
     save(){
        System.out.println("PersonService's save....");
    }
    
}

PersonAction.java

 com.gong.spring.struts2.actions;

import com.gong.spring.struts2.services.PersonService;

 PersonAction {
    
     PersonService personService;
    
     setPersonService(PersonService personService) {
        this.personService = personService;
    }
    
    public String execute(){
        System.out.println("execute....");
        personService.save();
        return "success";
    }
    
}

基本流程如下:在PersonAction装配PersonService,在execute方法中打印相关信息并调用personService的save方法,最后返回"success"。在PersonService中的save方法输出一句话。

applicationContext.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"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">

    bean id="person" 
        class="com.gong.spring.struts2.beans.Person">
        property name="username" value="spring"></property>    
    </bean>
    
    ="personService"
        class="com.gong.spring.struts2.services.PersonService"<!-- 注意: 在 IOC 容器中配置 Struts2 的 Action 时,需要配置 scope 属性,其值必须为 prototype -->
    ="personAction"="com.gong.spring.struts2.actions.PersonAction"
        scope="prototype" ref="personService">
    
beans>

在applicationContext中配置相关bean。

stuts.xml

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

strutsconstant ="struts.enable.DynamicMethodInvocation"="false" />
    ="struts.devMode"="true" />

    package ="default" namespace="/" extends="struts-default">
        
          
            Spring 整合 Struts2 时,在 Struts2 中配置的 Spring 的 Action 的 class 需要指向 IOC 容器中该 bean 的 id
        -->
        action ="person-save" class="personAction">
            result>/success.jspaction>
        
    >

在struts.xml中配置action时,class需要使用applicationContext.xml中bean的id。结果返回给success.jsp。

web.xml

web-app xmlns:xsi xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5" 配置 Spring 配置文件的名称和位置 context-paramparam-name>contextConfigLocationparam-value>classpath:applicationContext.xml>
     启动 IOC 容器的 ServletContextListener listenerlistener-class>org.springframework.web.context.ContextLoaderListener 配置 Struts2 的 Filter filterfilter-name>struts2filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilterfilter-mappingurl-pattern>/*web-app>

在web.xml中需要两个部分:一个是让springIOC容器在web应用服务加载时就进行创建。另一个就是配置struts2的过滤器。

index.jsp

%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"htmlheadmeta http-equiv="Content-Type" content="text/html; charset=UTF-8"title>Insert title herebodya href="person-save">Person Savea>

sucess.jsp

h4>Success Page>

test.jsp

%@page ="com.gong.spring.struts2.beans.Person"="org.springframework.web.context.support.WebApplicationContextUtils"="org.springframework.context.ApplicationContext"% 
        //1. 从 appication 域对象中得到 IOC 容器的实例
        ApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(application);
        
        //2. 从 IOC 容器中得到 bean
        Person person = ctx.getBean(Person.class);
        
        //3. 使用 bean
        person.hello();
    %>

启动tomacat服务器之后:

?

点击Person Save:

会跳转到succes.jsp,并在控制台输出相应的语句。

说明spring整合struts2基本是成功的了。?

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读