本文整理汇总了Java中com.jfinal.ext.interceptor.SessionInViewInterceptor类的典型用法代码示例。如果您正苦于以下问题:Java SessionInViewInterceptor类的具体用法?Java SessionInViewInterceptor怎么用?Java SessionInViewInterceptor使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
SessionInViewInterceptor类属于com.jfinal.ext.interceptor包,在下文中一共展示了SessionInViewInterceptor类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: configInterceptor
import com.jfinal.ext.interceptor.SessionInViewInterceptor; //导入依赖的package包/类
/**
* 配置全局拦截器
*/
public void configInterceptor(Interceptors me) {
// 异常拦截器,跳转到500页面
me.add(new ExceptionInterceptor());
// session model转换
me.add(new SessionInViewInterceptor());
// 设置session属性
me.add(new SessionAttrInterceptor());
// 公共拦截器
me.add(new JflyfoxInterceptor());
}
示例2: show
import com.jfinal.ext.interceptor.SessionInViewInterceptor; //导入依赖的package包/类
@Before(SessionInViewInterceptor.class)
public void show() {
render("/htmls/session/session.html");
}
示例3: configInterceptor
import com.jfinal.ext.interceptor.SessionInViewInterceptor; //导入依赖的package包/类
@Override
public void configInterceptor(Interceptors me) {
// TODO Auto-generated method stub
me.add(new SessionInViewInterceptor());
}