摘要:
参考原文1:https://blog.csdn.net/weixin_62651190/article/details/127666631 参考原文2:https://blog.csdn.net/yefufeng/article/details/127719952 环境准备 Python:3.10. 阅读全文
摘要:
文件路径:/etc/sysconfig/network-scripts ifcfg-ens33文件内容参考如下: 1 TYPE=Ethernet 2 PROXY_METHOD=none 3 BROWSER_ONLY=no 4 BOOTPROTO=static 5 DEFROUTE=yes 6 IPV 阅读全文
摘要:
1.进入nginx官网下载页面,下载Linux所需的压缩包文件。 http://nginx.org/en/download.html 2.在安装nginx之前需要安装pcre,gcc,openssl,zlib。因为nginx依赖这些环境。 yum install pcre pcre-devel gc 阅读全文
摘要:
解决:在/etc/init.d/下创建nginx文件作启动脚本 1 #!/bin/bash 2 # 3 # chkconfig: - 85 15 4 # description: Nginx is a World Wide Web server. 5 # processname: nginx 6 7 阅读全文
摘要:
1、mvn clean时 Could not find artifact ******* 解决: 所有父工程把子module注释掉,各自执行一次mvn clean install,使本地maven仓库有这个工程的依赖,取消注释后重新mvn clean。 注意:所有父工程的聚合pom都是 <packa 阅读全文
摘要:
给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 target 的那 两个 整数,并返回它们的数组下标。 你可以假设每种输入只会对应一个答案。但是,数组中同一个元素在答案里不能重复出现。 你可以按任意顺序返回答案。 示例 1: 输入:nums = [2,7, 阅读全文
摘要:
config类引入插件 1 //Spring boot方式 2 @Configuration 3 @MapperScan("com.baomidou.cloud.service.*.mapper*") 4 public class MybatisPlusConfig { 5 //旧版 6 @Bean 阅读全文
摘要:
1、pom.xml引用依赖 springboot默认是用logback的日志框架的,所以需要排除logback,不然会出现jar依赖冲突的报错 1 <dependency> 2 <groupId>org.springframework.boot</groupId> 3 <artifactId>spr 阅读全文
摘要:
1、No servers available for service: 在pom导入没问题的情况下(具体版本看api文档),查看nacos注册中心的各项是否设置正确,注意:服务的注册中心的分组必须同一分组。 阅读全文
摘要:
git常用命令记录 git remote rm name # 删除远程仓库git remote rename old_name new_name # 修改仓库名git remote add [shortname] [url] #添加远程版本库例如: git remote rm origin git 阅读全文