====== 在 Eclipse 使用 Struts 1.3.x ====== ===== 建立支援 Struts 的專案環境 ===== 1. Eclipse 中建立一個 Dynamic Web Project 然後 2. 將 Struts 的 lib 下的檔案都複製到 WebContent/WEB-INF/lib 目錄下 3. 將 Struts 的 src\taglib\src\main\resources\META-INF\tld 下的 *.tld 複製到 WebContent/WEB-INF/lib 4. 在 WebContent/WEB-INF 目錄下建立 struts-config.xml 內容如下: 5. 修改 WebContent/WEB-INF/web.xml 增加處理 Struts 動作的 ActionServlet 的設定,內容下: action org.apache.struts.action.ActionServlet config /WEB-INF/struts-config.xml debug 3 detail 3 0 action *.do ===== 建立首頁(index.jsp) ===== 首先在 WebContent/ 下建立 index.jsp 檔案,修改內容如下: <%@ page language="java" contentType="text/html; charset=BIG5" pageEncoding="BIG5"%> <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%> 首頁
<%-- 使用Struts tag--%> 新增產品 查詢產品資料
編輯 struts-config.xml 中的 節點,修改內容如下: 在 WebContent/ 目錄下建立 pages 目錄 在 WebContent/pages/ 目錄下建立 searchProduct.jsp 檔案後修改內容如下: <%@ page language="java" contentType="text/html; charset=BIG5" pageEncoding="BIG5"%> <%@ taglib uri="http://struts.apache.org/tags-html" prefix="html"%> 查詢產品資料
產品名稱: