你可以简单地直接在任何类中定义不同方法来处理URL:
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");
}
}