摘要: 硬件介绍 网络 速率:发送数据的速度 带宽:最大能支持的速度 吞吐量:单位时间内,接收数据的能力 时延:延迟,数据从发送到到达的时间 阅读全文
posted @ 2022-06-20 23:26 温柔Sweetie 阅读(18) 评论(0) 推荐(0)
摘要: 一、什么是事务 阅读全文
posted @ 2022-06-06 13:46 温柔Sweetie 阅读(17) 评论(0) 推荐(0)
摘要: ├── main │ ├── java │ │ └── com │ │ └── bestpractice │ │ ├── config │ │ ├── constants │ │ ├── controller │ │ ├── dao │ │ ├── exception │ │ ├── filter 阅读全文
posted @ 2022-06-02 22:28 温柔Sweetie 阅读(107) 评论(0) 推荐(0)
摘要: 一、Maven环境配置 1、常用Spring全家桶套餐配置 【Spring Boot-2.4.2】 <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <arti 阅读全文
posted @ 2022-05-29 15:25 温柔Sweetie 阅读(45) 评论(0) 推荐(0)
摘要: 一、环境安装 1、VirtualBox安装 https://www.virtualbox.org/ 2、Vagrant安装 https://www.vagrantup.com/ ① 安装完成重启电脑 ② 打开cmd,执行 vagrant -v 查看是否安装成功 3、Centos7安装 ① 安装Cen 阅读全文
posted @ 2022-05-16 23:21 温柔Sweetie 阅读(69) 评论(0) 推荐(0)
摘要: Maven的生命周期由一系列阶段(phase)构成,以内置的生命周期default为例,它包含以下phase: validate initialize generate-sources process-sources generate-resources process-resources comp 阅读全文
posted @ 2022-05-16 12:58 温柔Sweetie 阅读(23) 评论(0) 推荐(0)
摘要: <script> // var 定义变量 { var a = 10 var b = "zhangsan" } console.log(a , b) var a = 20 var b = 30 console.log(a , b) a = 40 b = 50 console.log(a , b) // 阅读全文
posted @ 2022-04-10 23:09 温柔Sweetie 阅读(38) 评论(0) 推荐(0)
摘要: ###【1】代码不区分大小写 File → Settings → Editor → General → Code Completion → 取消勾选 Match case 阅读全文
posted @ 2022-04-08 13:17 温柔Sweetie 阅读(23) 评论(0) 推荐(0)
摘要: 一、注解 1.Spring自带 @Component @Controller @Service @Repository @RestController (@ResponseBody + @Controller) @Bean @Autowired @Resource @RequestMapping @ 阅读全文
posted @ 2022-04-05 16:37 温柔Sweetie 阅读(178) 评论(0) 推荐(0)
摘要: # 服务端口 server: port: 8090 spring: # 应用名 application: name: spring-test # 日期格式转换 jackson: date-format: yyyy-MM-dd HH:mm:ss time-zone: GMT+8 # 数据源 datas 阅读全文
posted @ 2022-04-05 15:54 温柔Sweetie 阅读(588) 评论(0) 推荐(0)