Spring 어노테이션 중엔 @Autowired라는 어노테이션이있다. 이 어노테이션을 특정 필드에 부여하면 IoC컨테이너 안에 존재하는 특정 필드와 같은 타입의 Bean을 찾아 자동으로 주입해주게 된다. 만약 같은 타입의 Bean이 여럿 존재한다면??[보러가기👀] 이 @Autowired 어노테이션이 없었다면 아래와 같이 코드가 지저분해진다... // TestService.java @Service public class TestService { private TestRepository testRepository; public TestService(TestRepository testRepository){ this.testRepository = testRepository; } ... } // TestRepos..