JAVA-19555 Move articles from spring-core-5 module to spring-boot-annotations-2 module (#13711)
* JAVA-19555 Move articles from spring-core-5 module to spring-boot-annotations-2 module * JAVA-19555 Move articles from spring-core module to spring-boot-annotations-2 module
This commit is contained in:
parent
2e129bd64b
commit
a50d41a8ce
|
@ -7,4 +7,8 @@ This module contains articles about Spring Boot annotations
|
|||
- [Spring Conditional Annotations](https://www.baeldung.com/spring-conditional-annotations)
|
||||
- [Guide to @SpringBootConfiguration in Spring Boot](https://www.baeldung.com/springbootconfiguration-annotation)
|
||||
- [Spring @Primary Annotation](http://www.baeldung.com/spring-primary)
|
||||
- [Spring Bean Names](https://www.baeldung.com/spring-bean-names)
|
||||
- [AliasFor Annotation in Spring](https://www.baeldung.com/spring-aliasfor-annotation)
|
||||
- [A Quick Guide to the Spring @Lazy Annotation](https://www.baeldung.com/spring-lazy-annotation)
|
||||
- [Instantiating Multiple Beans of the Same Class with Spring Annotations](https://www.baeldung.com/spring-same-class-multiple-beans)
|
||||
- More articles: [[<-- prev]](/spring-boot-modules/spring-boot-annotations)
|
||||
|
|
|
@ -28,6 +28,11 @@
|
|||
<artifactId>mockito-inline</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-test</artifactId>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
|
@ -6,9 +6,6 @@ This module contains articles about core Spring functionality.
|
|||
|
||||
- [Spring @Component Annotation](https://www.baeldung.com/spring-component-annotation)
|
||||
- [Solving Spring’s “not eligible for auto-proxying” Warning](https://www.baeldung.com/spring-not-eligible-for-auto-proxying)
|
||||
- [Spring Bean Names](https://www.baeldung.com/spring-bean-names)
|
||||
- [AliasFor Annotation in Spring](https://www.baeldung.com/spring-aliasfor-annotation)
|
||||
- [A Quick Guide to the Spring @Lazy Annotation](https://www.baeldung.com/spring-lazy-annotation)
|
||||
- [Finding the Spring Version](https://www.baeldung.com/spring-find-version)
|
||||
- [How Does the Spring Singleton Bean Serve Concurrent Requests?](https://www.baeldung.com/spring-singleton-concurrent-requests)
|
||||
- More articles: [[<-- prev]](../spring-core-4)
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
|
||||
### Relevant Articles:
|
||||
- [Instantiating Multiple Beans of the Same Class with Spring Annotations](https://www.baeldung.com/spring-same-class-multiple-beans)
|
||||
- [Using Environment Variables in Spring Boot’s application.properties](https://www.baeldung.com/spring-boot-properties-env-variables)
|
||||
- [Reinitialize Singleton Bean in Spring Context](https://www.baeldung.com/spring-reinitialize-singleton-bean)
|
||||
- [HTTP Interface in Spring 6](https://www.baeldung.com/spring-6-http-interface)
|
||||
|
|
Loading…
Reference in New Issue