1.注册gitee账号 2.安装git 配置用户信息 git config --global user.name "your username" 配置用户邮箱信息 git config --global user.email "email.com" 3.进入git bash,输入ssh-keygen ...
分类:
其他好文 时间:
2021-01-06 12:36:18
阅读次数:
0
日常项目中,使用注解@EnableAspectJAutoProxy @EnableAsync 这里面涉及对@Import注解支撑的底层原理:ConfigurationClassPostProcessor 这个类,说到这个类,我们要先从SpringBoot启动流程说起。 首先,看springboot启 ...
分类:
其他好文 时间:
2021-01-06 12:14:57
阅读次数:
0
Maxscale介绍 MaxScale是maridb开发的一个mysql数据中间件,其配置简单,能够实现读写分离,并且可以根据主从状态实现写库的自动切换。 注:MaxScale需要MariaDB至少 10.3.1 以上版本的支持,版本过低可能导致部分功能无法使用。 MariaDB MaxScale ...
分类:
其他好文 时间:
2021-01-06 11:38:28
阅读次数:
0
默认的config #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/ngi ...
分类:
其他好文 时间:
2021-01-05 11:39:49
阅读次数:
0
上篇中说到通过@Value注解获取配置中心的内容进行注入,要想了解这个就要知道spring Environment原理,关于这原理我看了下网上分析的文章:https://blog.csdn.net/topdeveloperr/article/details/88063828 一、Environmen ...
分类:
编程语言 时间:
2021-01-05 11:26:47
阅读次数:
0
#include <string.h> #include <stdarg.h> #include <stdio.h> #include <limits.h> #include <stdio.h> #define CONFIG_DIR "/etc/usbs/" int main() { FILE *f ...
分类:
其他好文 时间:
2021-01-05 11:25:23
阅读次数:
0
在IDEA里修改时不成功,总是1.7 通过配置文件修改: 打开C:\Users\用户\.IntelliJIdea2019.2\config\options下的project.default.xml, 将这里的1.7修改为1.8,新建maven项目成功。 ...
分类:
其他好文 时间:
2021-01-05 11:19:49
阅读次数:
0
话不多说,直接开干。 1.添加一个热部署的依赖到你项目的pom.xml中 <!--热部署--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-devtools</artifactId> ...
分类:
编程语言 时间:
2021-01-05 11:00:04
阅读次数:
0
.eslintrc.js文件 进行语法检测 babel.config.js文件 babel的配置文件 .browserslistrc文件 不支持es6的浏览器,将代码转化为es5,进行兼容 进行兼容 last 2 version 表示所有浏览器兼容到最后两个版本 > 1% 代表着全球超过1%人使用的 ...
分类:
其他好文 时间:
2021-01-04 11:27:26
阅读次数:
0
今天执行:net start MongoDB 开启服务时,出现服务名无效问题。 百度搜了一些文章,终于找到了解决办法: 1、新建db文件夹和log文件夹 2、新建mongo.config文件 dbpath=D:\Program Files\MongoDB\Server\4.2\data\db log ...
分类:
数据库 时间:
2021-01-04 11:27:12
阅读次数:
0