namespace決定了action的訪問路徑,默認爲"",能夠接受全部路徑的action
namespace能夠寫爲/,或者/xxx,或者/xxx/yyy,對應的action訪問路徑爲/index.action,/xxx/index.action,或
者/xxx/yyy/index.action
namespace最好也用模塊來進行命名
----------------------------------Hongten-----------------------------------
新建項目web project:struts2_0200_Namespace
Build Path:引入struts2的jar包
struts.xml
代碼:
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<constant name="struts.devMode" value="true"/>
<package name="front" namespace="/" extends="struts-default">
<action name="index">
<result name="success">/Namespace.jsp</result>
</action>
</package>
<package name="main" extends="struts-default" namespace="">
<action name="index">
<result>/Namespace.jsp</result>
</action>
</package>
</struts>
----------------------------------Hongten-----------------------------------
註解:
package:用來區分重名的狀況
namespace:必須用"/"開頭,如:/front ,在url中咱們就要輸入:http://localost:1000/struts2_0200_Namespace/front/index.action
package和namespace在開發的時候都以模塊來命名。
result:凡是name="success"的result,均可以不寫:name="success"即:<result>/Namespace.jsp</result>
----------------------------------Hongten-----------------------------------
Namespace.jsp
代碼:
<?xml version="1.0" encoding="GB18030" ?>
<%@ page language="java" contentType="text/html; charset=GB18030"
pageEncoding="GB18030"%>
<%@taglib uri="/struts-tags" prefix="s" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GB18030" />
<title>Insert title here</title>
</head>
<body>
namespace決定了action的訪問路徑,默認爲"",能夠接收全部路徑的action<br />
namespace能夠寫爲/,或者/xxx,或者/xxx/yyy,對應的action訪問路徑爲/index.action,
/xxx/index.action,或者/xxx/yyy/index.action.<br/>
namespace最好也用模塊來進行命名
</body>
</html>html