My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Featured
Downloads
Wiki pages

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 "<h1>Hello, world</h1>";
    }

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

Read article on IBM developerWorks China.

Learn more and download now!

Powered by Google Project Hosting