IntroductionWebWind is an MVC framework for Java web applications. Unlike most MVC frameworks such as Struts, WebWind does support friendly URL directly. Web applications can be more friendly to search engine, and more simple. FeaturesWebWind provides many effective and simple way to make development of web application become easier.
Unlike Struts or other MVC frameworks, WebWind does not require any particular interface known as Action or Controller. You can define your own methods to handle URL you defined: public class Blog {
@Mapping("/hello/$1")
public String hello(String name) {
return "<h1>Hello, " + name + "</h1>";
}
@Mapping("/")
public Renderer index() throws Exception {
return new TemplateRenderer("/index.jsp");
}
}See Developer's Guide to get more details about WebWind. | |
► Sign in to add a comment