1、公共模块的用途
考虑到用户登录系统后,会受到权限规则的限制,类似获取系统菜单、系统通知、即时消息等接口,是所有用户都具备的功能,因此就将这部分的通用功能接口抽离出来放在公共模块中,用户只需登录成功,即具备公共模块接口的调用权限。
2、公共模块控制器
package cn.org.xcore.edusys.controller.common;
import cn.org.xcore.edusys.db.ext.model.Menu;
import cn.org.xcore.edusys.service.impl.MenuService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
/**
* 公共接口
*
* @author 李海林 手机:13802780104|微信:lihailin9073|Email:767679879@qq.com
* @copyright 个人开发者李海林版权所有,产品详情及技术服务请登录官网查询[http://www.x-core.org.cn]
* @create 2019-08-28 08:34
*/
@Api(tags = "02-公共模块")
@RestController
@RequestMapping("/common")
public class CommonController {
@Autowired
MenuService menuService;
/**
* 获取登录用户菜单列表
* @return
*/
@ApiOperation(value = "获取用户菜单")
@GetMapping("/get_user_menu")
public List<Menu> getUserMenus() {
return menuService.getMenusByUserId();
}
}
3、公共模块服务层
package cn.org.xcore.edusys.service.impl;
import cn.org.xcore.edusys.db.ext.model.Menu;
import cn.org.xcore.edusys.common.UserUtils;
import cn.org.xcore.edusys.db.ext.mapper.ExtMenuMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.annotation.CacheConfig;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;
/**
* 菜单服务类
*
* @author 李海林 手机:13802780104|微信:lihailin9073|Email:767679879@qq.com
* @copyright 个人开发者李海林版权所有,产品详情及技术服务请登录官网查询[http://www.x-core.org.cn]
* @create 2019-08-15 09:16
*/
@Service
@Transactional
@CacheConfig(cacheNames = "menus_cache")
public class MenuService {
@Autowired
private ExtMenuMapper extMenuMapper;
// @Cacheable(key = "#root.methodName")
public List<Menu> getAllMenu(){
return extMenuMapper.getAllMenu();
}
public List<Menu> getMenusByUserId() {
return extMenuMapper.getMenusByHrId(UserUtils.getCurrentUser().getId());
}
public List<Menu> menuTree() {
return extMenuMapper.menuTree();
}
public List<Long> getMenusByRid(Long rid) {
return extMenuMapper.getMenusByRid(rid);
}
}
4、公共模块数据层
由于公共模块存在一定的定制化查询业务,仅靠MyBatis Generator自动生成的数据层代码无法实现需求,因此将这部分的数据层代码放在/db/ext模块下,如下图所示:
5、基于Swagger测试接口
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/10472.html