struts学习笔记

1 找到我们使用struts2所需的7个jar包
 fileupload
 commons-logging
 freemaker
 ognl
 struts2-core
 xwork
2  将这7个jar包引入到项目中
3 引入struts2的配置文件:struts.xml
 struts:struts-config,xml
 spring:ApplicationContext.xml
 Hibernate:hibernate.cfg.xml
           Pojo.hbm.xml(映射文件)

 手动创建struts.xml
 1)选中src创建一个xml文件,取名struts.xml
 2)引入配置文件的规范(参考核心包中的dtd文件)
4导入配置文件的自动提示功能
1)解压struts2-core
2)复制struts.xml头标签中的URL路径
3)在Myeclipse中window-preferences-输入cata
   找到xml catalog
   选择user specified entries ---- add
   location:解压后的2.0.dtd文件的本路径
   key type:uri
   key:第二步中复制的url路径
5.将struts的过滤器引入到web.xml里面
  1)解析配置文件struts.xml
  2)拦截所有的请求,交给struts框架来处理

 

 

*****************************
1创建Action
2在struts.xml中配置创建的Action

你可能感兴趣的:(struts,职场,休闲,struts学习笔记)