前端框架选型是企业提升开发效率与用户体验的关键因素
752
2022-10-13
fw4jREST- MVC 框架
fw4jREST 是基于 fw4j编写的,去掉了springmvc的框架注解命名方式,增加使用Groovy语言编写Controller的支持,去掉配置文件的编写,框架启动后会扫描项目下所有目录。
fw4jREST 包括的注解有:
Fw4jController GET POST PUT DELETE
代码示例:
java:
@Fw4jController("/admin")public class AdminController { @GET("/index") public String index(OutParam out){ jsHelper js = new JSHelper("nav/nav.js"); String a = js.getMethod("nav").invoke(); System.out.println(a); out.put("nav", a); return "request:index"; }}
groovy:
@Fw4jController("/websitetype")class WebsiteTypeController{ WebsiteTypeService websiteTypeService = null @Fw4jSpringIoc("WebsiteTypeService") void setWebsiteService(WebsiteTypeService websiteTypeService){ this.websiteTypeService = websiteTypeService } @POST("/add") String add(InParam inParam){ WebsiteType wst = new WebsiteType() wst.name = inParam['name'] websiteTypeService.save(wst) "redirect:/WebRoot/websitetype/show" } @GET("/del") String del(InParam inParam){ def id = Integer.parseInt(inParam['id']) websiteTypeService.del(id) "redirect:/WebRoot/websitetype/show" } @PUT("/total") String totalAdd(InParam inParam){ def id = inParam['id'] WebsiteType wst = this.websiteTypeService.get(id) wst.websiteTotalNum ++ this.websiteTypeService.save(wst) "redirect:/WebRoot/websitetype/show" }}
web.xml:
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~