Springboot
文章平均质量分 91
Ellenjing
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
容器应用优雅关闭
平台层要能够将应用从负载均衡中去掉,确保应用不会再接受到新的请求连接,并且能够通知到应用要进行优雅停机处理。应用自身需要实现优雅停机的处理逻辑,确保处理中的请求可以继续完成,资源得到有效的关闭释放,等等。...原创 2022-06-11 16:04:19 · 479 阅读 · 0 评论 -
Add unit tests using SpringBoot
添加maven dependency<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope></dependency>spring boot中集成了junit测试Sample:import org.sp原创 2022-01-31 17:29:27 · 713 阅读 · 0 评论 -
Springboot embedded Tomcat
Springboot内置Tomcat启动过程最近工作中需要在Tomcat端口启动后立即获取随机的端口号,所以研究了下Springboot相关的源码,在此记录下。1. maven dependency<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <v原创 2021-08-29 14:37:14 · 984 阅读 · 0 评论
分享