11 2020 档案
摘要:` <!-- Hutool引入maven依赖--> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.3.5</version> </dependency> <depend
阅读全文
摘要:` public Page<TbUserInfo> getUserInfoList(Integer page, Integer pageSize) { //mybatisPlus中的page对象 Page<TbUserInfo> userInfoPage= new Page<>(); //先查询到所
阅读全文
摘要:` @Autowired StringRedisTemplate stringRedisTemplate; @ApiOperation(value = "查询操作日志" ) @GetMapping("/querySysLogList") public R querySysLogList( @ApiP
阅读全文
摘要:import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; import com.rrk.common.center.bin.exception.RrkException; import com.rrk
阅读全文
摘要:` /** * 获取IP地址 * <p> * 使用Nginx等反向代理软件, 则不能通过request.getRemoteAddr()获取IP地址 * 如果使用了多级反向代理的话,X-Forwarded-For的值并不止一个,而是一串IP地址,X-Forwarded-For中第一个非unknown的
阅读全文