configRoute方法中:
ms.add(new DbRoute());
DbRoute 中:
@Override
public void config() {
//设置默认根路径
setBaseViewPath("/db");
add("/aaa", Dbtest.class);
}
Controller 中 :
render("index.html");
url:http://localhost:8080/aaa