修改主文件菜单,并且添加 Spring 相关文章仓库

This commit is contained in:
YuCheng Hu 2022-08-24 15:31:22 -04:00
parent 7ee605ddb8
commit bdead6ad04
No known key found for this signature in database
GPG Key ID: C395DC68EF030B59
3 changed files with 28 additions and 5 deletions

View File

@ -7,16 +7,24 @@
- [核心编程](java/core/_README.md) - [核心编程](java/core/_README.md)
- [语言基础](java/fundamentals/_README.md) - [语言基础](java/fundamentals/_README.md)
- 框架
- [Spring](framework/spring/_README.md)
- [核心编程](java/core/_README.md)
- [语言基础](java/fundamentals/_README.md)
- 其他小工具 - 库和技术方案
- [JWT](jwt/README.md) - [JWT](jwt/README.md)
- [MessagePack](message-pack/index.md) - [MessagePack](message-pack/index.md)
- [Protocol Buffers](protocol-buffers/index.md) - [Protocol Buffers](protocol-buffers/index.md)
- 产品应用
- [Discourse](discourse/index.md) - [Discourse](discourse/index.md)
- 面试和算法 - 数据结构和算法
- [面试问题和经验](interview/index.md)
- [算法题](algorithm/index.md) - [算法题](algorithm/index.md)
-
- 求职
- [面试问题和经验](interview/index.md)
- 快速导航 - 快速导航
- [WWW.CWIKI.US](https://www.cwiki.us/) - [WWW.CWIKI.US](https://www.cwiki.us/)

View File

@ -0,0 +1,3 @@
# Spring 框架
[](spring-boot-testing.md ':include')

View File

@ -0,0 +1,12 @@
## Spring Boot 测试
本模块中包含了有关如何在 Spring Boot 中进行测试和在测试中遇到的一些问题和解决的文章。
- [Testing with Spring and Spock](https://www.baeldung.com/spring-spock-testing)
- [Exclude Auto-Configuration Classes in Spring Boot Tests](https://www.baeldung.com/spring-boot-exclude-auto-configuration-test)
- [Embedded Redis Server with Spring Boot Test](https://www.baeldung.com/spring-embedded-redis)
- [Testing Spring Boot @ConfigurationProperties](https://www.baeldung.com/spring-boot-testing-configurationproperties)
- [Prevent ApplicationRunner or CommandLineRunner Beans From Executing During Junit Testing](https://www.baeldung.com/spring-junit-prevent-runner-beans-testing-execution)
- [Testing in Spring Boot](https://www.baeldung.com/spring-boot-testing)
- [解决在 Spring Boot 中运行 JUnit 测试遇到的 NoSuchMethodError 错误](https://www.ossez.com/t/spring-boot-junit-nosuchmethoderror/14066)
- More articles: [[more -->]](../spring-boot-testing-2)