2009-09-27 111 views
0

如果我嘗試使用此操作(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

解決,需要:

<result>/WEB-INF/newFolder/test2.jsp</result>