首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > Java > 对于java REST风格的MVC框架

对于java REST风格的MVC框架

  • 资源大小:90.99 kB
  • 上传时间:2021-06-29
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签: mvc 框架 风格 对于

资 源 简 介

WebWind is a REST-style MVC framework that totally different from traditional MVC frameworks (such as Struts, WebWork). WebWind is simple and small (86KB including source). See sample class: ``` import org.expressme.webwind.Mapping; public class MyPage { @Mapping("/hello") public String hello() { return "

Hello, world

"; } @Mapping("/hello/$1") public String hello(String name) { return "

Hello, " + name + "

"; } } ``` Read article on IBM developerWorks China. Learn more and download now!
VIP VIP
0.202699s