2021年11月22日

Nexus3安装

摘要: 下载,官网地址:https://www.sonatype.com/nexus-repository-oss,OSS版本为免费,专业版收费 解压到指定文件夹,如c:\JavaEnv\Nexus3,其中sonatype-work 该目录是运行时目录,用于生成运行时所需要的配置文件,日志文件仓库文件等;n 阅读全文

posted @ 2021-11-22 00:09 liucuiqiang 阅读(1077) 评论(0) 推荐(0) 编辑

Minio安装与配置

摘要: 下载去官网 http://www.minio.org.cn/ 拷贝到本地目录,如c:\JavaEnv\minio下 github下载WinSW-x64.exe,网址在 https://github.com/winsw/winsw/releases 将WinSW.exe复制到c:\JavaEnv\mi 阅读全文

posted @ 2021-11-22 00:08 liucuiqiang 阅读(2279) 评论(0) 推荐(1) 编辑

2021年11月21日

方便切换JDK方式安装JDK

摘要: 华为镜像的路径为https://repo.huaweicloud.com/java/ 下载windows 64位exe 用7zip打开 解压压缩包中的.rsrc\1033\JAVA_CAB10\111\tools.zip到JDK最终位置 当前目录下以管理员身份执行命令 for /r %x in (* 阅读全文

posted @ 2021-11-21 23:05 liucuiqiang 阅读(27) 评论(0) 推荐(0) 编辑

2021年3月3日

Ruoyi框架更名称

摘要: Ruoyi框架改名 1.项目重构名称为mt2.打开代码,把com.ruoyi更构为com.mt3.ApplicationConfig的mapperScan更改为com.mt4.application.yml中typeAliasesPackage更改为com.mt logging更改为com.mt5. 阅读全文

posted @ 2021-03-03 11:00 liucuiqiang 阅读(2198) 评论(0) 推荐(0) 编辑

2021年2月4日

TS入门

摘要: 1.安装cnpm npm install -g cnpm --registry=https://registry.npm.taobao.org 或者直接更改npm 的源为tb的镜像(推荐用此种方法,很多网友说cnpm有问题), npm install --registry=https://regis 阅读全文

posted @ 2021-02-04 11:51 liucuiqiang 阅读(175) 评论(0) 推荐(0) 编辑

2020年8月4日

给菜单加个标记

摘要: 放成arrow后面 <span style="float: right;color: white;border-radius: 7%;margin-right: 10px;padding-left: 5px;padding-right: 5px;"> 未完成 </span> 阅读全文

posted @ 2020-08-04 21:43 liucuiqiang 阅读(145) 评论(0) 推荐(0) 编辑

2020年5月8日

npm使用

摘要: 清空缓存npm cache clean --force 安装cnpmnpm install -g cnpm --registry=https://registry.npm.taobao.org(一直报错) 找回缺失的包 npm install 临时使用TB npm --registry https: 阅读全文

posted @ 2020-05-08 12:48 liucuiqiang 阅读(112) 评论(0) 推荐(0) 编辑

nginx命令

摘要: start nginx nginx.exe –s quit nginx –s reload nginx -h # 打开帮助 nginx -t # 检查配置文件是否正确 # 以下命令均要先启动nginx才能执行 nginx -s stop # 停止 nginx -s quit # 退出 nginx - 阅读全文

posted @ 2020-05-08 11:53 liucuiqiang 阅读(120) 评论(0) 推荐(0) 编辑

2019年9月30日

spring boot中的定时任务

摘要: spring boot自带定义任务管理器 串行执行 步骤 1. 在Applicaton上加入注解@EnableScheduling 2.新建一个类UserTask,加入注解@Component 3.在Task类中加入如下内容, @Scheduled(cron = "*/10 * * * * ?") 阅读全文

posted @ 2019-09-30 14:29 liucuiqiang 阅读(217) 评论(0) 推荐(0) 编辑

2019年9月29日

精简你的代码量:lombok的使用

摘要: lombok可以使JAVA语言,可以象.NET那样方便地实现GET/SET方法 最主要是可以使用var来定义要实例化的类型 下面说一下具体的使用方法: 1.官网地址:https://projectlombok.org/ 2.根据自己的IDE,在官网找对应的安装方法 3.对应的使用手册也有,自己看吧 阅读全文

posted @ 2019-09-29 11:10 liucuiqiang 阅读(197) 评论(0) 推荐(0) 编辑

导航