lix_uan lix_uan
3年前
MySQL学习总结
数据库的三大范式第一范式:每个列都不可以再拆分第二范式:在第一范式的基础上,非主键列完全依赖于主键第三范式:在第二范式上,非主键列只依赖主键,不依赖其他非主键事务的并发问题脏读:事务A读取了事务B更新的数据,然后数据B回滚,那么A读到的是脏数据不可重复读:事务A多次读取同一数据,事务B在事务A读取的过程中对数据进行了修改并提交,导致A多次读的数据
Stella981 Stella981
3年前
Spring Boot 开发应用热部署
springbootdevtools实现热部署想在SpringBoot中使用该功能非常简单,添加依赖:<!热部署模块<dependency<groupIdorg.springframework.boot</groupId
Stella981 Stella981
3年前
Openresty Nginx 安装搭建
openresty安装:1.下载openresty    wgethttps://openresty.org/download/openresty1.15.8.3.tar.gz2.安装依赖包    yumyinstallgccgccc pcrepcredevel zlibzlibdevel
Wesley13 Wesley13
3年前
Java连接RabbitMQ之创建连接
依赖包:1<dependencies2<dependency3<groupIdjunit</groupId4<artifactIdjunit</artifactId5<version4.12</version6
Easter79 Easter79
3年前
VUE AntDesign DatePicker设置默认显示当前日期
1:main.js中引入依赖importVuefrom"vue";import{DatePicker}from'antdesignvue';import'antdesignvue/dist/antd.css';设置中文importmomentfrom'm
Stella981 Stella981
3年前
Flink读取数据存入Redis中
1.环境准备:  1.搭建单机版的Redis  2.虚拟机上ncl9000方式产生数据2.需求分析:通过socket的ncl9000方式产生数据,然后将数据以list的形式存入到Redis中3.flink依赖的redis的pom文件     redis的依赖(https://www.oschina.net/ac
Easter79 Easter79
3年前
SpringBoot实践:集成Mybatis
第一步:在pom文件中加入依赖关系<dependency<groupIdcom.baomidou</groupId<artifactIdmybatisplusspringbootstarter</artifactId<version${mybatisplusspringbootstarter.vers
Stella981 Stella981
3年前
Json字符串转map集合
第一步:在pom.xml中添加依赖;<dependency<groupIdcom.alibaba</groupId<artifactIdfastjson</artifactId<version1.2.47</version
Stella981 Stella981
3年前
CommonJs 与 AMD 与 requirejs
CommonJS规范主要解决服务端中library的导入导出问题。NodeJS(同时也包括webpack与npm)是CommonJS规范的实现由于CommonJS规范引入依赖的方式是同步的,而在浏览器端需要进行异步加载,因此创建了AMD规范用于浏览器端管理依赖问题。require.js是AMD规范的一管实现。U