Express-Wind is a brand new MVC framework that is completely different with tradictional Java MVC frameworks such as Struts.
Express-Wind supports friendly URL like '/blog/post/2009-09-09.html', and simple URL mapping mechanism like '/blog/post/$1.html'.
See example:
import org.expressme.wind.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>";
}
}
Please visit http://code.google.com/p/express-me/wiki/ExpressWind for more docs and download.