摘要:
` 1、利用to_days函数查询今天的数据: select * from 表名 where to_days(时间字段名) = to_days(now()); to_days函数:返回从0000年(公元1年)至当前日期的总天数。 2、昨天 SELECT * FROM 表名 WHERE TO_DAYS 阅读全文
摘要:
` package com.rrk.user.center.controller; import cn.hutool.http.HttpUtil; import org.jsoup.Jsoup; import org.jsoup.nodes.Document; import org.jsoup.se 阅读全文
摘要:
UPDATE 表名 set 修改的字段 = round(rand() * 1000) + 1 where 条件 随机查询 10条数据 SELECT * FROM 表名 ORDER BY RAND() LIMIT 10 阅读全文
摘要:
` <!-- 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的 阅读全文