会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
sweetie1022
博客园
首页
新随笔
联系
订阅
管理
2022年6月20日
【计算机】重点内容记录
摘要: 硬件介绍 网络 速率:发送数据的速度 带宽:最大能支持的速度 吞吐量:单位时间内,接收数据的能力 时延:延迟,数据从发送到到达的时间
阅读全文
posted @ 2022-06-20 23:26 温柔Sweetie
阅读(18)
评论(0)
推荐(0)
2022年6月6日
【MySQL】对于事务的一些理解(新手向)
摘要: 一、什么是事务
阅读全文
posted @ 2022-06-06 13:46 温柔Sweetie
阅读(17)
评论(0)
推荐(0)
2022年6月2日
【SpringBoot】优秀的项目结构
摘要: ├── main │ ├── java │ │ └── com │ │ └── bestpractice │ │ ├── config │ │ ├── constants │ │ ├── controller │ │ ├── dao │ │ ├── exception │ │ ├── filter
阅读全文
posted @ 2022-06-02 22:28 温柔Sweetie
阅读(107)
评论(0)
推荐(0)
2022年5月29日
【Java项目】谷粒商城(二)
摘要: 一、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)
2022年5月16日
【Java项目】谷粒商城(一)
摘要: 一、环境安装 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】
摘要: 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)
2022年4月10日
【前端】语法学习
摘要: <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)
2022年4月8日
【IDEA】分享一些Idea好用的一些配置!
摘要: ###【1】代码不区分大小写 File → Settings → Editor → General → Code Completion → 取消勾选 Match case
阅读全文
posted @ 2022-04-08 13:17 温柔Sweetie
阅读(23)
评论(0)
推荐(0)
2022年4月5日
【SpringBoot】注解大全
摘要: 一、注解 1.Spring自带 @Component @Controller @Service @Repository @RestController (@ResponseBody + @Controller) @Bean @Autowired @Resource @RequestMapping @
阅读全文
posted @ 2022-04-05 16:37 温柔Sweetie
阅读(178)
评论(0)
推荐(0)
【SpringBoot】Yml常用配置
摘要: # 服务端口 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)
下一页
公告