前言
struts1是一种mvc框架,处于表现层,也叫表现层框架。
正文
搭建框架
新建web工程,拷贝对应的jar包
拷贝配置文件
struts_config.xml
测试框架
继承Action,重写方法execute
execute方法
@param ActionMapping 封装了struts_config.xml中的Action配置信息
@param ActionForm 封装了struts_config.xml中的FormBean配置信息(接受前台页面的参数,将form强制转为对应的参数类)
继承ActionForm :定义参数和属性
配置配置文件
配置form——Bean的语法
配置Action实现类的配置实例
注:在struts1中,只有在jsp中设置<%@pqge isELIgnored="false"%> 才可以使用EL;而且jstl的Uri被改为“http://java.sun.com/jstl/core”
总结
STRUTS1框架简介
时间: 2024-11-02 12:10:33