diff --git a/_sidebar.md b/_sidebar.md index f4a6f68..3fdbe0a 100644 --- a/_sidebar.md +++ b/_sidebar.md @@ -6,17 +6,25 @@ - [概述和环境配置](java/_README.md) - [核心编程](java/core/_README.md) - [语言基础](java/fundamentals/_README.md) - - -- 其他小工具 + +- 框架 + - [Spring](framework/spring/_README.md) + - [核心编程](java/core/_README.md) + - [语言基础](java/fundamentals/_README.md) + +- 库和技术方案 - [JWT](jwt/README.md) - [MessagePack](message-pack/index.md) - [Protocol Buffers](protocol-buffers/index.md) + +- 产品应用 - [Discourse](discourse/index.md) -- 面试和算法 - - [面试问题和经验](interview/index.md) +- 数据结构和算法 - [算法题](algorithm/index.md) +- +- 求职 + - [面试问题和经验](interview/index.md) - 快速导航 - [WWW.CWIKI.US](https://www.cwiki.us/) diff --git a/framework/spring/_README.md b/framework/spring/_README.md new file mode 100644 index 0000000..bf34a59 --- /dev/null +++ b/framework/spring/_README.md @@ -0,0 +1,3 @@ +# Spring 框架 + +[](spring-boot-testing.md ':include') \ No newline at end of file diff --git a/framework/spring/spring-boot-testing.md b/framework/spring/spring-boot-testing.md new file mode 100644 index 0000000..6cc24d1 --- /dev/null +++ b/framework/spring/spring-boot-testing.md @@ -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)