me.setBaseViewPath("/view");
me.add("/hello", HelloController.class);
在访问时http://localhost:8080/hello是访问得到的,那么设置这个setBaseViewPath的作用是什么呢??如果me.setBaseViewPath("view");这样呢?我不是很理解这个的作用
me.setBaseViewPath("/view");
me.add("/hello", HelloController.class);
在访问时http://localhost:8080/hello是访问得到的,那么设置这个setBaseViewPath的作用是什么呢??如果me.setBaseViewPath("view");这样呢?我不是很理解这个的作用
https://www.jfinal.com/doc/3-7
一定要仔细看一看