首页>代码>ssm开源java博客项目,基于maven搭建>/blog/src/main/java/com/hzz/project/controller/AdminController.java
package com.hzz.project.controller;


import com.hzz.project.po.user.UserCustom;
import com.hzz.project.po.user.UserQueryVo;
import com.hzz.project.service.UserService;
import org.apache.shiro.authz.annotation.Logical;
import org.apache.shiro.authz.annotation.RequiresRoles;
import org.apache.shiro.session.Session;
import org.apache.shiro.session.mgt.eis.SessionDAO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;

import java.util.Collection;
import java.util.List;

/**
 * Created by hong on 2017/1/4.
 */
@Controller
@RequestMapping("/admin")
public class AdminController {

    @Autowired
    private UserService userService;

    @Autowired
    private SessionDAO sessionDAO;

    @RequestMapping
    private String admin() {
        return "admin/home";
    }

    //查看注册用户
    @RequiresRoles(value={"blogger","administrator"},logical = Logical.OR)
    @RequestMapping("/checkUserList")
    private String checkUserList(UserQueryVo userQueryVo, Model model) {
        List<UserCustom> userList = userService.getUserList(userQueryVo);
        model.addAttribute("userList", userList);
        return "admin/userList";
    }

    //查看正在登录的用户
    @RequiresRoles(value={"blogger","administrator"},logical = Logical.OR)
    @RequestMapping("/checkSessionList")
    private String checkSessionList() {
        Collection<Session> sessions = sessionDAO.getActiveSessions();
        System.out.println(sessions.size());
        return null;
    }

}
最近下载更多
monolog  LV4 2023年6月18日
liangge2115  LV27 2022年11月7日
xyl11961196  LV18 2022年5月28日
wanglinddad  LV55 2022年4月17日
qq3577025766  LV6 2022年3月18日
找找找找找  LV4 2022年3月17日
wjh12345654321  LV14 2022年1月20日
wangqiang1233211  LV2 2021年10月15日
lsglsg9  LV23 2021年9月8日
eclipse_javen  LV6 2021年8月21日
最近浏览更多
799743530  LV11 7月11日
暂无贡献等级
lun123456 6月23日
暂无贡献等级
xzg123456  LV6 6月19日
领通过后哄哄你  LV1 6月8日
goccgoccgocc  LV4 5月23日
abcdmly12  LV1 1月12日
minjing123  LV8 1月4日
周敏国  LV9 2023年8月21日
19137715150  LV1 2023年6月18日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友