一,引入支持Struts2支持注解开发jar包: struts2-convention-plugin-2.1.8.1.jar(支持Struts2框架注解开发的jar包) 二,Struts2使用注解开发需要遵循一些规范: 1,Action要必须继承ActionSupport父类: 2,Action所在的包名必须以 .action 结尾. 三,action中常用的注解: 1,@ParentPackage:对应xml配置文件中的package的父包,一般需要继承struts-default. 2,@…