欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

jfinal  renderJson  报错对应html找不到 java.lang.RuntimeException: File not found : 。。。。method.html

程序员文章站 2022-06-14 20:13:40
...

问题:jfinal  renderJson  报错对应html找不到 java.lang.RuntimeException: File not found : 。。。。method.html

解决办法:

拦截器中没有inv.invoke();导致此问题。

要么不配置任何拦截器,若配置了拦截器就要有inv.invoke();。

/**

 * 配置全局拦截器

 */

public void configInterceptor(Interceptors me) {

        //这里配置了拦截器,那么在LoginIntercept拦截器中就要有inv.invoke();

        //或者不配置拦截器

 me.addGlobalActionInterceptor(new LoginIntercept());

}

 

相关标签: jfinal