REST风格的MVC框架 WebWind

码农软件 · 软件分类 · REST/RESTful项目 · 2019-03-11 17:14:31

软件介绍

WebWind是一个全新的REST风格的Java MVC框架。和传统的Struts不同,WebWind让你轻松映射URL并直接从URL中提取参数。WebWind非常精简,仅86KB(包含源码),可以直接和Spring、Guice等IoC框架集成,并支持 Velocity等众多第三方组件。

示例代码:

import org.expressme.webwind.Mapping;

public class MyPage {

   
@Mapping("/hello")
   
public String hello() {
       
return "<h1>Hello, world</h1>";
   
}

   
@Mapping("/hello/$1")
   
public String hello(String name) {
       
return "<h1>Hello, " + name + "</h1>";
   
}
}

本文地址:https://www.codercto.com/soft/d/1126.html

Algorithms Sequential & Parallel

Algorithms Sequential & Parallel

Russ Miller、Laurence Boxer / Charles River Media / 2005-08-03 / USD 59.95

With multi-core processors replacing traditional processors and the movement to multiprocessor workstations and servers, parallel computing has moved from a specialty area to the core of computer scie......一起来看看 《Algorithms Sequential & Parallel》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具