1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-19 07:31:24 +02:00

Add content for spring configuration

This commit is contained in:
Kamran Ahmed
2023-01-10 03:22:03 +04:00
parent de8a4d4acf
commit 2037edb2da
2 changed files with 20 additions and 2 deletions

View File

@@ -1 +1,10 @@
# Configuration # Configuration
Spring Core Configuration is the process of configuring the Spring Framework, which involves specifying the various configuration details required for an application to function properly. This can include setting up beans, specifying bean dependencies, configuring aspect-oriented programming (AOP) aspects, and more. Configuration can be done through Java code, XML files, or using annotations in the code.
You can learn more about Spring Core Configuration from the links below:
- [Spring Framework Documentation](https://docs.spring.io/spring/docs/current/spring-framework-reference/)
- ["Spring Configuration" tutorial](https://www.baeldung.com/project-configuration-with-spring)
- ["Spring Framework" tutorial](https://www.tutorialspoint.com/spring/index.htm)
- ["Spring Core" video tutorial](https://www.youtube.com/watch?v=GB8k2-Egfv0)

View File

@@ -1 +1,10 @@
# Spring core # Spring Core
Spring is an application framework for the Java platform. It provides the infrastructure support for developing Java applications, including dependency injection, data access, transaction management, and more.
You can learn more about Spring Core from the links below:
- [Official website](https://spring.io/)
- [Official Documentation](https://spring.io/why-spring)
- [Getting Started with Spring](https://spring.io/guides/gs/spring-boot/)
- [Spring Core Tutorial](https://www.tutorialspoint.com/spring/index.htm)