搭建struts1 X開發環境

2021-06-10 01:20:57 字數 765 閱讀 2900

搭建環境:

1、匯入jar包

將struts-1.3.10-all——lib包中的所有內容匯入。

2、建立乙個配置檔案:struts-config.xml

作用:方便struts使用者使用

位置:一般放在web-inf下

(1)新建struts配置檔案struts-config.xml

將如下內容複製進struts-config.xml檔案

<?xml version="1.0" encoding="utf-8" ?>

3、修改web.xml

註冊struts中心控制器——actionservlet

將如下內容複製進web.xml檔案

<?xml version="1.0" encoding="utf-8"?>

org.apache.struts.action.actionservlet

config

/web-inf/struts-config.xml

0*.do

struts1 x 學習筆記

struts1.x 工作流程 2.建立actionform物件,儲存表單引數 3.使用actionform的validate方法進行引數驗證 4.actionservlet傳遞請求給相應的action 5.action的execute方法返回相應的actionforward物件 6.actionse...

struts 1 x 學習 筆記1

配置struts 1.x 要做的以下幾件事,1.匯入jar 2.web.xml配置actionservlet 3.struts conf.xml 4.配置formbean 5.配置action path 必須 type 必須 name 是frombean的名字 scope 作用域,只有session...

Struts1 x 總結(很全面)

struts1.x學完,整理一下 struts1.x是基於mvc框架的,學struts1.x前先了解mvc 一 mvc model業務邏輯 有關資料庫的操作 view展示 jsp動態頁面 controller控制器 擷取資料 分發 轉向 struts中mvc模式執行流程 browse request...