我真的在用 Struts2 绞尽脑汁——我可以通过省略部分路径来访问 JSP 页面。注意路径假设包括pages/welcome_user.jsp
. 关键是看pages
路径中的单词。
这是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>
<package name="default" namespace="/User" extends="struts-default">
<action name="Login">
<result>pages/login.jsp</result>
</action>
<action name="Welcome" class="com.mkyong.user.action.WelcomeUserAction">
<result name="SUCCESS">pages/welcome_user.jsp</result>
</action>
</package>
</struts>
我可以访问login.jsp
via:http://localhost/Struts2Example/User/Login
和welcome_user.jsp
via:http://localhost/Struts2Example/User/Welcome
请注意,在这两个 URL 中,我都可以 drop pages
,为什么?
来源: http ://www.mkyong.com/misc/how-to-use-mkyong-tutorial/
有人可以通过上面的教程告诉我有什么问题吗?