2012-12-22 63 views
1

我是struts的初學者。我遇到了一個我從來沒聽說過的錯誤。錯誤在struts-config.xml它.The代碼我如何連接struts-config.1-3.10.dtd文件我的struts-config.xml

<!DOCTYPE struts-config PUBLIC  
"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"  "http://struts.apache.org/dtds/struts-config_1_3.dtd">  
<struts-config><form-beans>  
<form-bean name="form1" type="LoginForm"/>  
</form-beans><action-mappings>  
<action path="/LoginAction" name="form1" type="LoginAction"/>  
<forward name="success" path="/success.jsp"/>  
<forward name="failuer" path="/Failure.jsp"/ 
</action>  
</action-mappings>  
</struts-config> 

現在,在<!DOCTYPE>標籤和雙 張開以下錯誤

問題「的指定資源的下載失敗。錯誤處理資源

'http://struts.apache.org/dtds/struts-config_1... 
"http://struts.apache.org/dtds/struts-config_1_3.dtd">" 

雖然試圖解決這個錯誤,我下載.dtd文件http://struts.apache.org/1.x/struts-core/dtddoc/struts-config_1_3.dtd.org.html 並保存它。在struts-config.xml,我試圖找到我保存下載文件的地方 ,但不工作。 我應該怎麼做才能解決這個問題。我錯了什麼地方。任何迴應都會被處理。

回答

1

將下載的"struts-config_1_3.dtd"文件放入WEB-INF文件夾。

另外從struts-config.xml中在DOCTYPE標籤替換以下

<!DOCTYPE struts-config PUBLIC  
"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN"  "http://struts.apache.org/dtds/struts-config_1_3.dtd"> 


with 


<!DOCTYPE struts-config PUBLIC  
"-//Apache Software Foundation//DTD Struts Configuration 1.3//EN" "struts-config_1_3.dtd"> 
相關問題