1.寫出表單註冊頁面
2.匯入struts開發包,並在web.xml檔案中配置struts的actionservlet處理所有.do的請求
actionservlet
org.apache.struts.action.actionservlet
config
/web-inf/struts-config.xml
//通過初始化引數把這個servlet需要的配置檔案配置進來
1 //希望啟動伺服器就載入這個servlet
*.do
3.在web-inf目錄下加下struts-config.xml檔案,在檔案中指定struts收到請求後,由哪個action處理請求,並且由哪個actionfrom封裝表單資料
<?xml version="1.0" encoding="iso-8859-1" ?>
4.寫用於封裝資料的formbean:userform (由struts掉要繼承actionform)
5.寫用於處理請求的registeraction
public class registeraction extends action catch (exception e)
"/message.jsp").forward(request, response);
}
}6.在struts-config.xml檔案中配置**位址
struts1搭建環境步驟
1.寫出表單註冊頁面 2.匯入struts開發包,並在web.xml檔案中配置struts的actionservlet處理所有.do的請求 actionservlet org.apache.struts.action.actionservlet config web inf struts confi...
struts1學習筆記1
1.struts是mvc模式的經典應用。它主要是提供乙個好的控制器和一套定製的標籤庫 優點 結構層次分明,高重用性。2.開發環境搭建 建立乙個struts1的工程,匯入struts1的jar包 在web inf目錄中新增乙個struts config.xml,配置web.xml檔案中新增處理stru...
struts1 上傳檔案
1.dto 類中寫好 private formfile formfiletaobao null 屬性。2.jsp 頁面中file對應的寫好屬性的名稱 如 選擇檔案 3.注意form中的屬性設定,例如 4.然後在寫action類 x xx x form 轉換dto類物件。formfile formfi...