如果我尝试使用此操作(test2),它总是返回“请求的资源(/WebApplication4/newFolder/test2.jsp)不可用。”
运行tomcat6和netbeans 6.7.1
config.xml(在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="mypackage" namespace="/" extends="struts-default">
<action name="test2">
<result>/newFolder/test2.jsp</result>
</action>
</package>
</struts>
alt text http://img2.pict.com/87/b7/dc/1676731/0/clipboard4.jpg
但如果我将结果值从“/newFolder/test2.jsp”更改为“test.jsp” - 一切正常。
答案 0 :(得分:0)
解决,需要:
<result>/WEB-INF/newFolder/test2.jsp</result>