解決Struts2配置檔案無提示問題

2021-08-25 15:27:05 字數 1234 閱讀 4772

問題:有時在開發第乙個web 專案時,在配置檔案中打個」<」 後,並沒有任何的提示資訊( 快捷鍵alt+/ 也不提示)

原因:找不到配置檔案頭中宣告的dtd 檔案

<?

xmlversion

="1.0"

encoding

="utf-8"

?>

doctype

struts

public

"-//apache software foundation//dtd struts configuration 2.1//en"

""

>

<

struts

>

<

package

name

="package-one"

extends

="struts-default"

namespace

="/"

>

package

>

struts

>

解決方法:

(2 ) 自己動手配置dtd 檔案,步驟如下:

1 ,找到struts2 發行包中的struts-2.1.dtd 檔案

2 ,開啟myeclipse 的window--preferences--myeclipse—-

files and editors—xml—xml catalog

3 ,單擊右側的add 按鈕,新增乙個add xml catalog entry ,裡面的有三個引數分別是:

location : file system 找到剛剛找到的struts-2.1.dtd 檔案。

key type : 選uri

key :

key 的取值根據struts-2.1.dtd 檔案中紅色字型部分而來。

<

!--

struts configuration dtd.

use the following doctype

"-//apache software foundation//dtd struts configuration 2.1//en"

"">

-->

然後ok ,提示就可以顯示了。

Struts2配置檔案

struts2 的配置檔案是整個框架的聯絡紐帶,是配置檔案將 struts2 的核心控制器 filterdispatcher 業務控制器 action 檢視元件等聯絡在一起。配置檔案在 struts2 框架中起到了排程的作用,也是降低各類元件耦合程度的一種手段。struts2 框架的配置分類如下 1...

struts2配置檔案

luowenfu 計應134 action 類 struts1要求action類繼承乙個抽象基類。struts1的乙個普遍問題是使用抽象類程式設計而不是介面。struts 2 action類可以實現乙個action介面,也可實現其他介面,使可選和定製的服務成為可能。struts2提供乙個action...

Struts2溫習 Struts配置檔案

struts配置檔案解釋 success.jsp 對於比較複雜的實際專案來說,可能struts.xml中需要寫非常多的類似 那麼為了方便管理,可以將相關的寫在別的xml檔案中,然後再引入到struts.xml中來,效果也是一樣 比如,在src meta inf struts2檔案下有這麼幾個xml ...