1、进入setting.xml的目录,创建一个setting.xml <?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreement...
Java
mybatis-plus3.5分页插件使用(PaginationInterceptor)
背景自从mybatis-plus某版本3.4/3.5更新之后,原先的分页插件paginationInterceptor无法正常使用,这里给出最新的solution。 paginationInterceptor 变更为 paginationInnerInterceptor 验证 旧版配置 ...
springboot很好用的自定义验证工具类
请求数据的验证可以用@Valid,但是service层的验证用if 有太繁琐,推荐使用这样的工具类 需要和自定义异常类配合使用 /** * @author: Gavin * @created: 2023/4/12 21:06 * @description: 数据验证 **...
mybatisplus的使用方法 一 (Springboot配置)
一、在pom.xml配置依赖 <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.3....
Linux安装jdk
操作系统:centos7.x 使用工具:xshell7、xftp7 Java版本:1.8 下载jdk 官网下载(推荐):https://www.oracle.com/java/technologies/downloads/ 2.使用xshell7、xftp7工具连接并上传文件到...
Spring之RestTemplate详解server端发起请求
https://www.jianshu.com/p/58949f8334f5
nohub启动jar
nohup java -jar demo.jar >log.log 2>&1 & 如果需要关闭,首先查看现运行的jar程序 ps -aux | grep java 关闭不需要的jar kill -9 进程号PID
springboot 敏感词过滤 sensitive-word
相关链接: https://gitcode.net/mirrors/houbb/sensitive-word?utm_source=csdn_github_accelerator 一、maven引入 <dependency> <groupId>com.github.houbb</groupId> <artifact...
一个依赖搞定 Spring Boot 反爬虫,防止接口盗刷!
https://mp.weixin.qq.com/s?__biz=MzI5ODI5NDkxMw==&mid=2247607657&idx=6&sn=102dfafa9d7c4afebc557c691c0e7e0e&chksm=ecab6e87dbdce7912c427a0d39b7e5a904df12f7bfb70c252276254f157c6918c0c...
ThreadLocal线程隔离
https://www.jianshu.com/p/3c5d7f09dfbd