Spring Auto scanning components
Normally you declare all the beans or components in XML bean configuration file, so that Spring container can detect and register your beans or components. Actually, Spring is able to…
Favourite tutorials for developers
Normally you declare all the beans or components in XML bean configuration file, so that Spring container can detect and register your beans or components. Actually, Spring is able to…
Since Spring 3.0, Spring supports for the standard JSR 330: Dependency Injection for Java. In Spring 3 application, you can uses standard: 1 - @Inject instead of Spring’s @Autowired to…
In Spring, @Qualifier means, which bean is qualify to autowired on a field. When you have multiple similar beans are declared in bean configuration file, will Spring know which particular…
In last Spring auto-wiring in XML example, it will autowired the matched property of any bean in current Spring container. In most cases, you may need autowired property in a…
This tutorial presents an overview of the core JAX-RS concepts, important annotations. JAX-RS is Java API for RESTful Web Services (JAX-RS) is a Java programming language API spec that provides…
As most of the companies and IT professionals look up to containers these days, Kubernetes is the most sought out of all the containers that are available. In this post,…