首页>代码>基于SpringBoot+Vue实现的社团管理系统>/club-management/server/src/main/java/com/bishe/club/controller/BaseController.java
package com.bishe.club.controller;

import com.bishe.club.msg.R;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.servlet.http.HttpSession;

/**
 * 系统控制器抽象类
 * 其他控制器需要继承这个控制器
 */
public abstract class BaseController {

    protected static final String SESSION_USER = "user";

    /**
     * 获取登录用户的信息
     * @param session 会话对象
     * @return
     */
    protected Object getSessionUser(HttpSession session) {

        return session.getAttribute(SESSION_USER);
    }

    /**
     * 将登录用户信息记录到会话对象中
     * @param session 会话对象
     * @param user 登录用户信息
     */
    protected void setSessionUser(HttpSession session, Object user) {

        session.setAttribute(SESSION_USER, user);
    }

    @ExceptionHandler(Exception.class)
    @ResponseBody
    public R exception(Exception e) {

        e.printStackTrace();

        return R.error();
    }
}
最近下载更多
citybird  LV4 昨天
withyouatdusk  LV2 10月19日
thsgli  LV8 8月21日
qq970040477  LV24 6月25日
203163  LV5 6月16日
sweetlove  LV20 6月14日
jc121140  LV3 4月15日
玖零定制问题修复  LV34 4月4日
dapeng0011  LV15 4月4日
yuan666  LV1 3月27日
最近浏览更多
羊羊羊羊杨 9小时前
暂无贡献等级
citybird  LV4 昨天
15719908287  LV9 11月4日
shunlun8855  LV1 10月28日
withyouatdusk  LV2 10月19日
黄志琴  LV1 10月19日
kaiser622 10月11日
暂无贡献等级
zzzyyy1  LV2 10月4日
thsgli  LV8 8月21日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友