摘要:
jenkins安装 下载jenkins之前安装jdk 找到我们需要的jdk版本,本人使用的是java-1.8.0-openjdk-devel.x86_64(注意是OPENJDK) yum -y list java* 下载jdk yum install -y java-1.8.0-openjdk-de 阅读全文
摘要:
docker安装redis 下载redis镜像 docker pull redis 创建redis实例 需要手动添加redis.conf文件 mkdir -p /mydata/redis/conf touch redis.conf 挂载文件配置 docker run -p 6379:6379 --n 阅读全文
摘要:
docker安装mysql5.7 下载mysql的daocker镜像mysql:指定版本 docker pull mysql:5.7 查看docker镜像 创建实例并启动(将容器中的一些信息挂载到外部linux) docker run -p 3306:3306 --name mysql \> -v 阅读全文
摘要:
linux安装Docker 作者使用的是centos 7.5操作系统,官方文档 https://docs.docker.com/engine/install/centos/ 卸载docker旧的版本 较旧的Docker版本称为docker或docker-engine。如果已安装这些程序,请卸载它们以 阅读全文
摘要:
spring-boot加密解密敏感信息 导入pom依赖,jasypt可以在maven库中查看详情。 <dependency> <groupId>com.github.ulisesbocchio</groupId> <artifactId>jasypt-spring-boot-starter</art 阅读全文
摘要:
Hutool工具使用 介绍 在大家日常工作中,都常常会做如下这些非常繁琐的工作。 这个是作者根据https://how2j.cn/k/hutool/hutool-url/1952.html#nowhere大佬的文档做的笔记。 开始 导入maven包 <dependency> <groupId>cn. 阅读全文
摘要:
maven中添加jjwt <!-- jjwt--> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt</artifactId> <version>0.9.1</version> </dependency> jwt工具类, 阅读全文
摘要:
1.首先了解oauth是什么东西,具体是用来干嘛的。 OAuth是一个关于授权(authorization)的开放网络标准,在全世界得到广泛应用,目前的版本是2.0版。 本文对OAuth 2.0的设计思路和运行流程,做一个简明通俗的解释。http://en.wikipedia.org/wiki/OA 阅读全文
摘要:
1:宝塔安装 Centos安装命令 官方最新详情:https://www.bt.cn/bbs/thread-19376-1-1.html yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6 阅读全文
摘要:
需要一个用于存储返回消息体和自定义的异常消息 package com.dome.common.utils.model; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; im 阅读全文