最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

改項目名和8080port等,STRUTS2通配符配置和servletAPI調(diào)用方法,config【詩書畫唱】

2021-01-07 01:01 作者:詩書畫唱  | 我要投稿



本期的導(dǎo)讀


改項目名和8080port等,STRUTS2通配符配置和servletAPI調(diào)用方法,思考,display-name

,action傳參的方法,action中request,session傳參的方法,獲取request對象,獲取response對象,獲取ServletContext(application)對象,改項目名和8080,設(shè)置持續(xù)時間,

返回結(jié)果配置,action中使用servletAPI,location,個人思考,*,*是通配符。



location[l???ke??n][lo??ke??n]

n.位置; 定位; 地點; 地方; (電影的)外景拍攝地;

[例句]The importance of the town is due to its geographical?location.

這座城鎮(zhèn)的重要性在于它的地理位置。

[其他]復(fù)數(shù):locations


改項目名和8080,設(shè)置持續(xù)時間


改項目名時就是要鼠標(biāo)右鍵,點“rename”,之后removeservlet,重啟servlet。



port就是計算機(jī)接口。


config[k?n?f?g][k?n?f?g]

abbr.(計算機(jī)系統(tǒng))配置;

[例句]What is your?config?of your computer you mainly?use?

你最常使用的電腦配備如何?




(因為自己插入圖片時沒保存,害得我現(xiàn)在是第2遍寫,所以一定要保存后再離開界面)

display-name

例子

package com.jy.action;


public class ClassicAction {

? ? public String perform(){

? ? return "success";

? ? }

}








action中request,session傳參的方法START



package com.jy.action;


import com.opensymphony.xwork2.ActionContext;


public class OneAction {

//http://localhost:8080/J190802/pub/oneAc.action

? ? public String deal(){

? ? ActionContext ctx = ActionContext.getContext();

? ? //相當(dāng)于request.setAttribute("act","admin");

? ? ctx.put("act", "admin");

? ? //相當(dāng)于session.setAttribute("cart","購物車信息");

? ? ctx.getSession().put("cart", "購物車信息");

? ? return "success";

? ? }

}

<?xml version="1.0" encoding="UTF-8" ?>

<!DOCTYPE struts PUBLIC "-//Apache Software Foundation

//DTD Struts Configuration 2.1//EN"?

"http://struts.apache.org/dtds/struts-2.1.dtd">

<struts>

? ? <package name="my" namespace="/pub" extends="struts-default">

? ? ? ? <!-- <action name="to*Ac" class="com.jy.action.PubAction"

? ? ? ? ? ? method="to{1}">

? ? ? ? ? ? <result name="{1}">/{1}.jsp</result>

? ? ? ? </action>

? ? ? ? <action name="to*Ac" class="com.jy.action.ProductAction"

? ? ? ? ? ? method="to{1}">

? ? ? ? ? ? <result name="{1}">/{1}.jsp</result>

? ? ? ? </action> -->

? ? ? ? <action name="oneAc" class="com.jy.action.OneAction"

? ? ? ? ? ? method="deal">

? ? ? ? ? ? <result>/show.jsp</result>

? ? ? ? </action>? ??

? ? ? ? <action name="twoAc" class="com.jy.action.TwoAction"

? ? ? ? ? ? method="perform">

? ? ? ? ? ? <result>/msg.jsp</result>

? ? ? ? </action>

? ? ? ? <!-- 最詳盡的action配置 -->??

? ? ? ? <action name="classicAc" class="com.jy.action.ClassicAction"

? ? ? ? ? ? method="perform">

? ? ? ? ? ? <result name="success" type="dispatcher">

? ? ? ? ? ? ? ? <!-- 需要跳轉(zhuǎn)的頁面 -->

? ? ? ? ? ? ? ? <param name="location">/ts.jsp</param>

? ? ? ? ? ? ? ? <!-- 是否允許使用OGNL表達(dá)式 -->

? ? ? ? ? ? ? ? <param name="parse">true</param>

? ? ? ? ? ? </result>

? ? ? ? </action>??

? ? ? ? <action name="*_*Ac" class="com.jy.action.{2}Action"

? ? ? ? ? ? method="to{1}">

? ? ? ? ? ? <result name="{1}">/{1}.jsp</result>

? ? ? ? </action>

? ? </package>

</struts>

*是通配符。


個人思考:更具體(更不抽象,如“*aa”)的關(guān)于代表所有字符串的*的action配置要在相此下更通用(更抽象)配置(如“*a*”)前面,因為這里是從上往下執(zhí)行的,所以這樣可防更具體的部分被更通用的部分覆蓋而失效。

{1}代表僅在name中的*中的第1個*,{1}之類的出現(xiàn)在name之外的配置中。




action中request,session傳參的方法END



package com.jy.action;


public class ProductAction {

//http://localhost:8080/J190802/pub/tomanageAc.action

? ? public String tomanage(){

? ? return "manage";

? ? }

? ? //http://localhost:8080/J190802/pub/toaddAc.action

? ? public String toadd(){

? ? return "add";

? ? }

? ? //http://localhost:8080/J190802/pub/todetailAc.action

? ? //http://localhost:8080/J190802/pub/detail_ProductAc.action

? ? public String todetail(){

? ? return "detail";

? ? }

}

package com.jy.action;


public class PubAction {

//http://localhost:8080/J190802/pub/tologinAc.action

//第1個*=login

//第2個*=Pub

//http://localhost:8080/J190802/pub/login_PubAc.action

? ? public String tologin(){

? ? return "login";

? ? }

? ? //http://localhost:8080/J190802/pub/toregAc.action

? ? //{1}=reg,{2}=Pub

? ? //http://localhost:8080/J190802/pub/reg_PubAc.action

? ? public String toreg(){

? ? return "reg";

? ? }

? ? //http://localhost:8080/J190802/pub/tomodifypwdAc.action

? ? public String tomodifypwd(){

? ? return "modifypwd";

? ? }

? ? //http://localhost:8080/J190802/pub/tovalideAc.action

? ? public String tovalide(){

? ? return "valide";

? ? }

}

package com.jy.action;


import org.apache.struts2.ServletActionContext;


public class ThreeAction {

? ? public String test(){

? ? //獲取request對象

? ? ServletActionContext.getRequest();

? ? //獲取response對象

? ? ServletActionContext.getResponse();

? ? //獲取ServletContext(application)對象

? ? ServletActionContext.getServletContext();

? ? return null;

? ? }

}

package com.jy.action;


import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;


import org.apache.struts2.interceptor.ServletRequestAware;

import org.apache.struts2.interceptor.ServletResponseAware;


public class TwoAction implements ServletRequestAware,

ServletResponseAware {

? ? private HttpServletResponse response;

? ? private HttpServletRequest request;

@Override

public void setServletResponse(HttpServletResponse arg0) {

// TODO Auto-generated method stub

this.response = arg0;

}


@Override

public void setServletRequest(HttpServletRequest arg0) {

// TODO Auto-generated method stub

this.request = arg0;

}

//http://localhost:8888/J190802/pub/twoAc.action

public String perform(){

request.setAttribute("msg", "Hello world");

return "success";

}


}




講義

action的配置方式:

學(xué)習(xí)<action>標(biāo)簽的用法


通配符配置方法:難點


實現(xiàn)跳轉(zhuǎn)到登錄頁面,注冊頁面和修改密碼,短信驗證頁面功能(這些功能都有后臺業(yè)務(wù))


servlet中的四大作用域:this,request,session,servletContext,還有response

在action中使用request和response對象的方法


在action中使用servlet API的方法:

1、通過ActionContext的getContext方法獲取

2、通過action實現(xiàn)ServletRequestAware和ServletResponseAware以及ServletContextAware接口實現(xiàn)

3、通過ServletActionContext的方法獲取servletAPI




action中使用servletAPI的PPT




返回結(jié)果配置的PPT







改項目名和8080port等,STRUTS2通配符配置和servletAPI調(diào)用方法,config【詩書畫唱】的評論 (共 條)

分享到微博請遵守國家法律
哈尔滨市| 蓝山县| 仁怀市| 兴海县| 城固县| 和静县| 都匀市| 茶陵县| 峡江县| 土默特右旗| 浦东新区| 青神县| 衡山县| 金湖县| 大港区| 辽宁省| 静安区| 穆棱市| 平利县| 荥阳市| 浮山县| 承德市| 丰台区| 昭苏县| 五莲县| 塔城市| 乃东县| 教育| 乌兰察布市| 嘉兴市| 会宁县| 分宜县| 寻乌县| 会昌县| 泸定县| 车致| 通山县| 巍山| 台州市| 宜良县| 南丹县|