您好,登錄后才能下訂單哦!
這篇文章主要講解了“struts2框架怎么運(yùn)用”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“struts2框架怎么運(yùn)用”吧!
這步還是很正常一樣,創(chuàng)建一個普通web工程。如圖:
首先我要告訴你到哪里去下載這個框架:在apache官網(wǎng),你百度struts2下載就可以找到了。
Struts運(yùn)行必要jar包介紹:
開發(fā)中為了方便導(dǎo)入,可以使用app/struts2-blank.war攜帶jar包
在webRoot下新建一個Demo文件,網(wǎng)頁先訪問start.jsp之后通過框架返回到result頁面
start.jsp界面:
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><html> <head> </head> <body> <h1>請求發(fā)起的頁面</h1> <!-- 發(fā)起一個請求 訪問Struts2框架 --> <!-- Struts2請求 默認(rèn)是以.action結(jié)尾 --> <a href="${pageContext.request.contextPath }/hello.action" rel="external nofollow" >訪問Struts2入門程序</a> </body></html>
result.jsp界面
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><html> <head> </head> <body> <h1>處理完成的結(jié)果頁面</h1> </body></html>
編寫Action服務(wù)器端處理邏輯
這里就是通過java創(chuàng)建一個類,該類可以說是action最普通的一個類
package com.yudian.struts;public class HelloAction { public String execute() throws Exception{ //這里取execute代表默認(rèn)執(zhí)行這個方法 System.out.println("我是執(zhí)行的內(nèi)容..."); return "excutesuccess"; //有返回值,我們用來跳轉(zhuǎn)頁面 } }
進(jìn)行框架配置web.xml、struts.xml
配置文件才是核心關(guān)鍵,先配置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/javaeehttp://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <display-name></display-name> <!-- 配置Struts2的前端控制器 --><!--filter-class里面很關(guān)鍵,固定 --> <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> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list></web-app>
在配置struts.xml,注意了這個是放在src下面而不是包下面
<?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"><struts> <package name="default" extends="struts-default"> <!-- 3.默認(rèn)Action 和Action的默認(rèn)處理類 --> <!-- 1.初步認(rèn)識Struts2 --><!-- 這里hello一定要和jsp中hello。action一致才能找到 --> <action name="hello" class="com.yudian.struts.HelloAction"> <result name="excutesuccess">/demo/result.jsp</result> </action> <!-- result代表如果返回值為 excutesuccess則跳轉(zhuǎn)頁面--> </package></struts>
運(yùn)行測試
先通過瀏覽器訪問start界面:
當(dāng)點(diǎn)擊:訪問Struts2入門程序連接直接跳轉(zhuǎn)到了result.jsp
運(yùn)行結(jié)果:
感謝各位的閱讀,以上就是“struts2框架怎么運(yùn)用”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對struts2框架怎么運(yùn)用這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。