摘要: 1:问题描述 当git修改了密码后,但是本地的git中 push等命令可能报错如下: fatal: Authentication failed for ... 2:解决方案 2.1:重设密码:git config --global user.password '新密码' 2.2重新输入账户名和密码: 阅读全文
posted @ 2022-08-21 20:13 鸭猪是的念来过倒 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 1:问题描述 项目中,使用apollo服务,来管理配置,在feign的url参数上使用${}的形式,获取配置文件的参数,在本地没有问题,但是使用了apollo后,发现该参数一直获取的是本地的配置文件参数,apollo别的参数都是好的,使用@Value(“${}”)获取也是可以的,但是feign上的占 阅读全文
posted @ 2022-08-17 21:20 鸭猪是的念来过倒 阅读(914) 评论(0) 推荐(0) 编辑
摘要: 前提条件:需要jdk环境 安装ES服务 1:首先下载包,如果只需要es服务,则只需要elasticsearch即可 elasticsearch:https://www.elastic.co/cn/downloads/past-releases#elasticsearch kibana:https:/ 阅读全文
posted @ 2022-07-23 14:13 鸭猪是的念来过倒 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 1:官网下载linux的jdk文件 根据环境 自行选择,一般下载jdk8的话,直接看历史版本,然后下载即可 地址:https://www.oracle.com/java/technologies/downloads/ 2:上传jdk压缩包到指定目录,如opt下,并使用命令解压:tar -zxvf j 阅读全文
posted @ 2022-07-23 12:53 鸭猪是的念来过倒 阅读(194) 评论(0) 推荐(0) 编辑
摘要: 1:引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> <version>2.3.5.RELEASE</versio 阅读全文
posted @ 2022-05-30 15:06 鸭猪是的念来过倒 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 1:描述 该模式定义了一系列算法,并将每个算法封装起来,使它们可以相互替换,且算法的变化不会影响使用算法的客户。策略模式属于对象行为模式,它通过对算法进行封装,把使用算法的责任和算法的实现分割开来,并委派给不同的对象对这些算法进行管理。 2:策略模式的主要优点如下。 多重条件语句不易维护,而使用策略 阅读全文
posted @ 2022-05-30 12:08 鸭猪是的念来过倒 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 安装 1:准备安装包 官网:http://nginx.org/ 2:上传到opt下 3:首先需要安装gcc g++的环境 可以使用yum安装:yum install -y gcc gcc-c++ 4:解压这四个文件 tar -zxvf 文件名 4:进入pcre文件夹,执行如下命令 是一个Perl库, 阅读全文
posted @ 2022-05-27 19:34 鸭猪是的念来过倒 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 1:引入依赖 <!--hibernate依赖--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-jpa</artifactId> </dependency> 阅读全文
posted @ 2022-05-27 16:07 鸭猪是的念来过倒 阅读(1196) 评论(0) 推荐(0) 编辑
摘要: 1:引入mp的包 <!--mybatis关键的两个包--> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus</artifactId> <version>3.3.1</version> </dependency 阅读全文
posted @ 2022-05-27 14:10 鸭猪是的念来过倒 阅读(58) 评论(0) 推荐(0) 编辑
摘要: 1:pom引入swagger的包 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> </dependency> <dependency> <groupId>io.sprin 阅读全文
posted @ 2022-05-27 12:18 鸭猪是的念来过倒 阅读(102) 评论(0) 推荐(0) 编辑