module里面的两个方法,第一个正常访问,第二个报jetbrick.io.resource.ResourceNotFoundException: uikit.index模板找不到
@At
@Ok("jetx:hello.jetx")
public void hello(HttpServletRequest request){
LOG.debug("hello Jetbrick...");
}
@At
@Ok("jetx:uikit.index")
public void uikit(HttpServletRequest request){
}
资源路径是这样的:
WEB-INF
-template
-jetx
-hello.jetx
-uikit
-index.jetx
配置文件:
jetx.template.loaders = $loader
$loader = jetbrick.template.loader.ServletResourceLoader
$loader.root = /WEB-INF/template/jetx/
$loader.reloadable = true