12 2020 档案
摘要:1.使用gradle插件打docker镜像并发布到公司neus仓库:gradle jib -DsendCredentialsOverHttp=true 2.测试环境拉取镜像:sudo docker pull nexus.xxl.cn:8082/xxx/xxx-server:latest 3.停止正在
阅读全文
摘要:application.yml 配置: rabbitmq: host: localhost port: 5672 listener: simple: acknowledge-mode: manual prefetch: 1 retry: enabled: true initial-interval:
阅读全文
摘要:下载地址: curl下载地址:https://curl.haxx.se/download.html 安装步骤: 1.打开链接,找到window 。点击 版本号 开始下载。 2.配置环境变量 新增环境变量:CURL_HOME = D:\dev\curl-7.74.0_1-win64-mingw\bin
阅读全文
摘要:1、maven: mvn -Prelease-xxx -Dmaven.test.skip=true clean install -U 2、gradle: 命令: gradle build --refresh-dependencies 手动清除:
阅读全文
摘要:import com.baomidou.mybatisplus.annotation.DbType; import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor; import com.baomidou.mybat
阅读全文
摘要:springboot 提供了对项目的监控功能。 1.首先添加依赖包 implementation 'org.springframework.boot:spring-boot-starter-actuator' 2.application.yml 端点配置 因为actuator默认只支持端点 /hea
阅读全文