搭建 struts2 環境

2022-09-12 23:15:32 字數 657 閱讀 3860

1. 加入jar包;

2. 在web.xml檔案中配置struts;

3. 在當前web應用的classpath下新增struts2的配置檔案;

4. 新增dtd約束。

在搭建 struts2 環境之前,我們首先當然是要新建立乙個 web 專案。

eclipse 中: file -> new -> ohters -> dynamic web project.

對於myeclipse中新增了配置之後仍然沒有提示,可能是由於編輯器選擇錯誤,步驟如下:

點選struts2.xml右鍵,選擇右鍵選單中的open with--》myeclipse xml editor,改為xml編輯器,就可以了。

找到啦!在window--> customzie perspective->menu visibility中的file中的new下面中可以找到,我重啟,然後再到src包檔案,右鍵,new->other->顯示全部,就再到查詢中輸入filter就找到。

在新建專案時候如果選擇tomcat8,將會匯入tomcat8的包,tomcat8中的某些包可能會同struts2的包衝突,導致專案無法執行,使用tomcat7 沒有問題。

dynamic web module version 需要選擇2.5,不然專案中沒有xml 檔案,應為更高版本中,是使用其他方式進行對映的。

搭建struts2環境

3.拷貝lib下的jar包到工程lib目錄下 4.修改web.xml檔案配置 struts2 org.apache.struts2.dispatcher.ng.filter.strutsprepareandexecutefilter 5.拷貝struts.xml檔案 extends struts d...

myeclipse 搭建 struts2 環境

1 工具以及版本 myeclipse10 綠色版 jdk1.7 apache tomcat 7.0.40 windows x64 直接解壓到 d program files apache tomcat 7.0.40 struts 2.3.24.1 all.zip 2 myeclipse配置tomca...

Myeclipse搭建struts2環境

2.執行struts2提供的例子 2 開啟myeclipse,啟動tomcat伺服器 3 在瀏覽器中開啟http localhost 8080 struts2 blank index.html 3.搭建struts2環境 檔案結構圖 1 建立乙個新的web project,名為teststruts2...