为restful开发的话,一定要设计到URL,struts正好是管理URL的 所以在struts的项目中用restful,要遵守struts的规则 rest在struts中对应的方法 上面是官方给出的帮助文档(默认情况下) get,不带id参数--index get,带id--show post,不带id--create put,带id--update delete,带id--destroy get,带id且访问edit资源--edit get,不带id访问edit资源--editNew res…