這篇文章主要介紹了spring整合struts2過程詳解,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
站在用戶的角度思考問題,與客戶深入溝通,找到海原網(wǎng)站設(shè)計(jì)與海原網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計(jì)與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個(gè)性化、用戶體驗(yàn)好的作品,建站類型包括:網(wǎng)站建設(shè)、成都網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名注冊、雅安服務(wù)器托管、企業(yè)郵箱。業(yè)務(wù)覆蓋海原地區(qū)。
首先將以下jar包加入到lib文件夾中:
基礎(chǔ)目錄:
Person.java
package com.gong.spring.struts2.beans; public class Person { private String username; public void setUsername(String username) { this.username = username; } public void hello(){ System.out.println("My name is " + username); } }
PersonService.java
package com.gong.spring.struts2.services; public class PersonService { public void save(){ System.out.println("PersonService's save...."); } }
PersonAction.java
package com.gong.spring.struts2.actions; import com.gong.spring.struts2.services.PersonService; public class PersonAction { private PersonService personService; public void setPersonService(PersonService personService) { this.personService = personService; } public String execute(){ System.out.println("execute...."); personService.save(); return "success"; } }
基本流程如下:在PersonAction裝配PersonService,在execute方法中打印相關(guān)信息并調(diào)用personService的save方法,最后返回"success"。在PersonService中的save方法輸出一句話。
applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
在applicationContext中配置相關(guān)bean。
stuts.xml
<?xml version="1.0" encoding="UTF-8" ?>/success.jsp
在struts.xml中配置action時(shí),class需要使用applicationContext.xml中bean的id。結(jié)果返回給success.jsp。
web.xml
<?xml version="1.0" encoding="UTF-8"?>contextConfigLocation classpath:applicationContext.xml org.springframework.web.context.ContextLoaderListener struts2 org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter struts2 /*
在web.xml中需要兩個(gè)部分:一個(gè)是讓springIOC容器在web應(yīng)用服務(wù)加載時(shí)就進(jìn)行創(chuàng)建。另一個(gè)就是配置struts2的過濾器。
index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>Insert title here Person Save
sucess.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>Insert title here Success Page
test.jsp
<%@page import="com.gong.spring.struts2.beans.Person"%> <%@page import="org.springframework.web.context.support.WebApplicationContextUtils"%> <%@page import="org.springframework.context.ApplicationContext"%> <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>Insert title here <% //1. 從 appication 域?qū)ο笾械玫?IOC 容器的實(shí)例 ApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(application); //2. 從 IOC 容器中得到 bean Person person = ctx.getBean(Person.class); //3. 使用 bean person.hello(); %>
啟動(dòng)tomacat服務(wù)器之后:
點(diǎn)擊Person Save:
會(huì)跳轉(zhuǎn)到succes.jsp,并在控制臺(tái)輸出相應(yīng)的語句。
說明spring整合struts2基本是成功的了。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。