<
?xml
version
="1.0"
encoding
="utf-8"
?>
<
!doctype
struts
public
"-//apache software foundation//dtd struts configuration 2.1//en"
"">
<
struts
>
<
package
name
="defaultlogin"
extends
="defaultexce"
namespace
="/"
>
<
!--『
!』操作
-->
<
action
name
="log"
class
="com.ym.action.loginaction"
>
<
result
name
="success"
>
/success
.jsp
<
/result
>
<
result
name
="log"
>
/main
.jsp
<
/result
>
<
/action
>
<
/package
>
<
/struts
>
這裡jsp頁面訪問的時候是
/*解釋一哈:「login!login.action」
第乙個「log」
表示的是
action
中的name
="login"
,第二個
「login」
表示的是
action
中class
="com.ym.action.loginaction"
類中的方法名(名字自己隨便取)*/
<
form
action
="log!login.action"
method
="post"
>
<
input
type
="text"
name
="logname"
>
>
<
input
type
="password"
name
="logpwd"
>
<
input
type
="submit"
value
="登入"
>
<
/form
>
<
!--萬用字元操作
-->
<
action
name
="log_*"
class
="com.ym.action.loginaction"
method=""
>
<
result
name
="success"
>
/success
.jsp
<
/result
>
<
result
name
="log"
>
/main
.jsp
<
/result
>
<
/action
>
這裡jsp頁面訪問的時候是
/*解釋一哈:「login_login2.action」
第乙個「log」
表示的是
action
中的name
="login"
,第二個
「login」
表示的是
action
中class
="com.ym.action.loginaction"
類中的方法名
(名字自己隨便取)*/
<
form
action
="log_login.action"
method
="post"
>
<
input
type
="text"
name
="logname"
>
>
<
input
type
="password"
name
="logpwd"
>
<
input
type
="submit"
value
="登入"
>
<
/form
>
<
action
name
="user_*"
class
="com.ym.action.useraction"
method=""
>
<
result
name
="userlogin"
type
="dispatcher"
>
/main
.jsp
<
/result
>
<
/action
>
struts2中result type的配置
1 result type 當你指定result的時候可以配置乙個型別。注意 如果不指定的話,預設的是dispatcher,意思是 運用伺服器跳轉 即 forward 2 除了dispatcher外,還有很多態別,例如 dispatcher 普通的頁面跳轉 redirect 伺服器端跳轉,url會顯...
struts2學習筆記 struts2的配置檔案
一 struts.xml定義bean的作用 1.建立該bean的例項,將該例項作為struts2框架的核心元件使用。2.bean包含的靜態方法需要乙個值注入。很方便地允許不建立某個類的例項,卻可以接受框架常量。通常需要設定static true 通常,當指定了type屬性時,該屬性不應該制定為tru...
struts2學習筆記 struts2的配置檔案
一 struts.xml定義bean的作用 1.建立該bean的例項,將該例項作為struts2框架的核心元件使用。2.bean包含的靜態方法需要乙個值注入。很方便地允許不建立某個類的例項,卻可以接受框架常量。通常需要設定static true 通常,當指定了type屬性時,該屬性不應該制定為tru...