STRUTS2result配置和類型轉(zhuǎn)換,通配符配置*,OGNL,注冊(cè)form表單提交,例子【詩書畫唱】
本期導(dǎo)讀:STRUTS2的result配置和類型轉(zhuǎn)換,返回結(jié)果配置的PPT,類型轉(zhuǎn)換的PPT,通配符配置*,OGNL,例子,success叫邏輯視圖名,注冊(cè)form表單提交,講義
返回結(jié)果配置的PPT START









返回結(jié)果配置的PPT?END
類型轉(zhuǎn)換的PPT START


Struts2提供了非常強(qiáng)大的類型轉(zhuǎn)換機(jī)制,只要把HTTP參數(shù)命名為合法的OGNL表達(dá)式,就可以對(duì)表單元素和其他GET/POST的參數(shù)使用類型轉(zhuǎn)換機(jī)制。同時(shí),Struts2框架為類型轉(zhuǎn)換提供了可擴(kuò)展性,開發(fā)者可以自行定義類型轉(zhuǎn)換器。例如,完成字符串到對(duì)象實(shí)例的轉(zhuǎn)換

Struts2內(nèi)部提供大量類型轉(zhuǎn)換器,用來完成數(shù)據(jù)類型轉(zhuǎn)換問題:
String和boolean、Boolean:完成字符串與布爾值之間的轉(zhuǎn)換
String和char、Character:往常字符串與字符之間的轉(zhuǎn)換
String和int、Integer:完成字符串與整型之間的轉(zhuǎn)換
String和long、Long:完成字符串與長整型值之間的轉(zhuǎn)換
String和double、Double:完成字符串與雙精度浮點(diǎn)值的轉(zhuǎn)換
String和float、Float:完成字符串和單精度浮點(diǎn)之間的轉(zhuǎn)換
String和Date:完成字符串和日期類型之間的轉(zhuǎn)換,可以接收yyyy-MM-dd格式字符串
String和數(shù)組:可以將多個(gè)同名參數(shù),轉(zhuǎn)換到數(shù)組中
String和Map、List:支持將數(shù)據(jù)保存到List或者M(jìn)ap集合







類型轉(zhuǎn)換的PPT END
講義 START

一、result標(biāo)簽的用法
servlet實(shí)現(xiàn)功能:轉(zhuǎn)發(fā)和重定向,往頁面?zhèn)鬟f一個(gè)字符串response.getWriter().writer();附件上傳
type="dispatcher"和type="redirect"的用法
轉(zhuǎn)發(fā):只能跳轉(zhuǎn)到本項(xiàng)目的頁面
重定向:可以跳轉(zhuǎn)到外部的網(wǎng)頁去
OGNL:對(duì)象導(dǎo)航語言
通配符配置*:

講義?END
例子 START

package com.jy.action;
public class NaviAction {
//http://localhost:8080/J190802/pub/to_indexAc.action
? ? public String to_index(){
? ? return "index";
? ? }
}


package com.jy.action;
public class OneAction {
//http://localhost:8888/J190802/pub/oneAc.action
? ? public String test(){
? ? //success叫邏輯視圖名
? ? return "success";
? ? }
}


package com.jy.action;
public class ProductAction {
//http://localhost:8080/J190802/pro/toAddAc.action
? ? public String toAdd(){
? ? //跳轉(zhuǎn)到錯(cuò)誤頁面
? ? return "error";
? ? }
? ? public String toList(){
? ? //跳轉(zhuǎn)到錯(cuò)誤頁面
? ? return "error";
? ? }
}


package com.jy.action;
import java.util.Date;
import com.jy.bean.User;
public class PubAction {
private User user;
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public String doReg(){
? ? System.out.println(user.getName());
? ? System.out.println(user.isFlag());
? ? String[]hbs = user.getHobbys();
? ? for(String hb : hbs) {
? ? System.out.println(hb);
? ? }
? ? return "success";
? ? }
}


package com.jy.action;
public class TwoAction {
private String target;
public String getTarget() {
return target;
}
public void setTarget(String target) {
this.target = target;
}
//http://localhost:8888/J190802/pub/twoAc.action
? ? public String gotoPage(){
? ? //跳轉(zhuǎn)到百度頁面www.baidu.com
? ? target = "jd";
? ? return "success";
? ? }
}


package com.jy.bean;
import java.util.Date;
public class User {
private String name;
private Date birthday;
private String sex;
private String[]hobbys;
private boolean flag;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Date getBirthday() {
return birthday;
}
public void setBirthday(Date birthday) {
this.birthday = birthday;
}
public String getSex() {
return sex;
}
public void setSex(String sex) {
this.sex = sex;
}
public String[] getHobbys() {
return hobbys;
}
public void setHobbys(String[] hobbys) {
this.hobbys = hobbys;
}
public boolean isFlag() {
return flag;
}
public void setFlag(boolean flag) {
this.flag = flag;
}
}


<?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="oneAc" class="com.jy.action.OneAction"
? ? ? ? ? ? method="test">
? ? ? ? ? ? <result name="success" type="dispatcher">
? ? ? ? ? ? ? ? <!-- location是不能變的,指定success邏輯視圖對(duì)應(yīng)的頁面是hello.jsp -->
? ? ? ? ? ? ? ? <param name="location">/hello.jsp</param>
? ? ? ? ? ? ? ? <!-- parse是不能變的,是否在頁面中允許使用OGNL表達(dá)式 -->
? ? ? ? ? ? ? ? <param name="parse">true</param>
? ? ? ? ? ? </result>
? ? ? ? </action>
? ? ? ? <action name="twoAc" class="com.jy.action.TwoAction"
? ? ? ? ? ? method="gotoPage">
? ? ? ? ? ? <result type="redirect">http://www.${target}.com</result>
? ? ? ? </action>
? ? ? ? <action name="to_*Ac" class="com.jy.action.NaviAction"
? ? ? ? ? ? method="to_{1}">
? ? ? ? ? ? <result name="{1}">/{1}.jsp</result>
? ? ? ? </action>
? ? </package>
? ? <package name="product" namespace="/pro" extends="struts-default">
? ? ? ? <!-- 配置全局的result結(jié)果,在product包下的所有action都可以使用這個(gè)配置結(jié)果 -->
? ? ? ? <global-results>
? ? ? ? ? ? <result name="error">/error.jsp</result>
? ? ? ? </global-results>
? ? ? ? <action name="toAddAc" class="com.jy.action.ProductAction"
? ? ? ? ? ? method="toAdd">? ? ? ? ? ??
? ? ? ? </action>
? ? ? ? <action name="toListAc" class="com.jy.action.ProductAction"
? ? ? ? ? ? method="toList">? ? ? ? ? ?
? ? ? ? </action>? ? ? ??
? ? </package>
? ? <package name="user" namespace="/user" extends="struts-default">
? ? ? ? <action name="regAc" class="com.jy.action.PubAction"
? ? ? ? ? ? method="doReg">
? ? ? ? ? ? <result>/success.jsp</result>
? ? ? ? </action>
? ? </package>? ?
</struts>



<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
? ? String path = request.getContextPath();
? ? String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
? ? <head>
? ? ? ? <base hreff="<%=basePath%>">
? ? ? ? <title></title>
? ? ? ? <meta http-equiv="pragma" content="no-cache">
? ? ? ? <meta http-equiv="cache-control" content="no-cache">
? ? ? ? <meta http-equiv="expires" content="0">
? ? ? ? <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
? ? ? ? <meta http-equiv="description" content="This is my page">
? ? </head>
? ? <body>
? ? ? ? <h1>Hello world</h1>
? ? </body>
</html>

注冊(cè)form表單提交:

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
? ? String path = request.getContextPath();
? ? String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
? ? <head>
? ? ? ? <base hreff="<%=basePath%>">
? ? ? ? <title></title>
? ? ? ? <meta http-equiv="pragma" content="no-cache">
? ? ? ? <meta http-equiv="cache-control" content="no-cache">
? ? ? ? <meta http-equiv="expires" content="0">
? ? ? ? <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
? ? ? ? <meta http-equiv="description" content="This is my page">
? ? ? ??
? ? </head>
? ? <body>
? ? ? ? <form action="user/regAc.action?user.flag=true" method="post">
? ? ? ? ? ? <label>姓名</label><input type="text" name="user.name"/>
? ? ? ? ? ? <br>
? ? ? ? ? ? <label>生日</label><input type="text" name="user.birthday"/>
? ? ? ? ? ? <br>
? ? ? ? ? ? <label>性別</label>
? ? ? ? ? ? <input type="radio" name="user.sex" value="男"/>男
? ? ? ? ? ? <input type="radio" name="user.sex" value="女"/>女
? ? ? ? ? ? <br>
? ? ? ? ? ? <label>愛好</label>
? ? ? ? ? ? <input type="checkbox" name="user.hobbys" value="讀書"/>讀書
? ? ? ? ? ? <input type="checkbox" name="user.hobbys" value="街舞"/>街舞
? ? ? ? ? ? <input type="checkbox" name="user.hobbys" value="電影"/>電影
? ? ? ? ? ? <br>
? ? ? ? ? ? <input type="submit" value="注冊(cè)"/>
? ? ? ? </form>
? ? </body>
</html>

