Last active
January 8, 2021 04:00
-
-
Save bs-public/2badf7f283606577d6b2531b2408003f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Java based Configuration : | |
The official Spring documentation refers to configuring your beans using a Java class annotated with @Configuration | |
and containing @Bean methods as 'Java Configuration'. This allows you to be absolutely free of all XML in your | |
application (at least as far as Spring goes). This support was added in Spring 3.0, and has gotten more powerful. | |
Annotation based Configuration: | |
Starting from Spring 2.5 it became possible to configure the dependency injection using annotations. | |
So instead of using XML to describe a bean wiring, you can move the bean configuration into the component | |
class itself by using annotations on the relevant class, method, or field declaration. | |
Starting from Spring 2.5 it became possible to configure the dependency injection using annotations. | |
So instead of using XML to describe a bean wiring, you can move the bean configuration into the component | |
class itself by using annotations on the relevant class, method, or field declaration. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment