@Autowired, @Resource and @Inject

Let us understand @Autowired,@Resource and @Inject All these annotations are used to inject dependent objects in spring. Lets see what is their differences @Resource -> javax.annotation @Inject -> javax.inject @Autowired -> org.springframework.beans.factory.annotation Let’s start with the below example Create Vehicle.java package com.kb.autowire_resource_inject;   public interface Vehicle {   } package com.kb.autowire_resource_inject; public interface Vehicle { […]

Share this article on