@Autowired
@Autowired
@Autowiredis used for automatic dependency injection in Spring. It can be applied to constructors, methods, and fields@Component public class MyService { @Autowired private MyRepository myRepository; }Use
@Autowiredwith@Qualifiercan specify which implementation to injectUse
@Primarywith@Componentcan set that implementation as default bean