传智博客学习笔记5.10
struts
注意,web工程中,需要把jar包复制到lib文件夹中!
BeanUtils
效率问题
尽量少使用struts标签
通用问题
0、搭建struts环境
1、struts流程
struts-config.xml
<form-beans>
<form-bean name="" type=""/>
</form-beans>
<action-mappings>
<action
path=""
name=""
validate=""
input="">
<forward name="success" path="/..."/>
</action>
</action-mappings>
2、具体配置
佟老师对Struts很是熟悉