摘要:
最近研究openfeign的重试原理时,发现其依赖spring-retry框架,不禁好奇并测试一二。使用步骤如下: 1、添加pom.xml依赖(springboot版本为2.6.14) <dependency> <groupId>org.springframework.boot</groupId> 阅读全文
摘要:
1、下载winsw,我用得版本是v2.11.0 下载地址:https://github.com/winsw/winsw/releases 2、将下载的WinSW-x64.exe放到 nacos\bin 目录,并改名为nacos.exe 3、在 nacos\bin 目录下创建nacos.xml文件 < 阅读全文
摘要:
网上有很多的安装教程,但Redis版本都比较老,最近从github上搜索到最新版本,验证可用,记录一下 1、应用下载地址:https://github.com/zkteco-home/redis-windows 2、选择对应得tag,下载安装包。下载7.0.9。 3、安装和取消安装服务 redis- 阅读全文
摘要:
springfox-boot-starter最新版本号为3.0.0,能够很好的集成swagger3到springboot项目中,但开局即巅峰,进入21年后,springfox就再没有更新维护,目前存在不少问题,且与spring-webmvc >= 5.3版本不兼容,springboot版本升级后会出 阅读全文
摘要:
springboot >= 2.4.0版本,已经不使用bootstrap.yml作为启动配置文件了,参考:#2905,确有必要时,需主动加入依赖spring-cloud-starter-bootstrap包 nacos也支持使用spring.config.import方式引入配置,参考:#2349, 阅读全文
摘要:
pom.xml依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> properties配置: sprin 阅读全文
摘要:
1、使用form表单上传文件 文件发送: @Test public void storeFile1() { File file = new File("D:\\test.txt"); String uploadUrl = "http://127.0.0.1:8080/upload1"; HttpHe 阅读全文
摘要:
Java开发过程中,通常一个项目有多个子模块(项目结构如下),我们发布新版本后,需要创建新的分支并修改pom.xml中的版本号,如果模块过多,这是一个麻烦的事情,但我们有versions-maven-plugin插件,可以非常方便的修改版本号 1、父项目pom.xml中引入插件依赖 <plugin> 阅读全文
摘要:
1、新建一个仓库,不要初始化,否词后面无法推送 2、将原仓库代码下载到本地 git clone --bare https://github.com/zhi-leaf/move-test.git 3、进入目录 cd move-test.git 4、切换仓库地址 git remote set-url o 阅读全文
摘要:
Jar包引入 <dependency> <groupId>com.auth0</groupId> <artifactId>java-jwt</artifactId> <version>4.0.0</version> </dependency> Java代码示例: public class JwtTo 阅读全文