fw4jREST- MVC 框架

网友投稿 752 2022-10-13

fw4jREST- MVC 框架

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:

fw4j index.html index.htm index.jsp default.html default.htm default.jsp fw4j / fw4j com-.fw4j.mvc.servlet.DispatcherServlet 1 static org.apache.catalina.servlets.DefaultServlet static /static/* static *.html

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:React Native与小程序的混编
下一篇:NYOJ24---素数距离问题
相关文章

 发表评论

暂时没有评论,来抢沙发吧~