本帖最后由 小石姐姐 于 2018-1-22 15:41 编辑
1.spring 坐标 struts2核心坐标 struts2 整合spring坐标 struts2注解坐标
2.注意事项
2.1扫描包名称必须:action,actions,struts,struts2
2.2class类命名规则必须以 xxxAction 结尾
3.编写StandardAtion
@parentPack("struts-default") //拦截器责任链
@namespace("/")
@controller()
@scope("prototype")
方法上注解
@action(value="url",result={})
@result
4.struts2前端控制器 filter strutsprepareandexcutefitler
注意事项:
/* 建议 改成 *.action |
|