[Spring] spring core 직접 구현해보기 - (2)
·
spring
https://github.com/ksngh/spring_practice GitHub - ksngh/spring_practiceContribute to ksngh/spring_practice development by creating an account on GitHub.github.com위 링크에 실습으로 작성한 코드가 들어있습니다. STEP 1 요약STEP 1의 목적은 Spring Core를 배우기 전에 왜 이런 Core 레이어가 필요해지는지를 직접 코드로 확인하는 데 있었습니다.Spring을 사용하지 않고 순수 Java(POJO + reflection)만으로 객체를 자동으로 생성하고 운영하려는 코드를 작성했습니다.핵심 내용reflection을 사용해 클래스에 어떤 어노테이션이 붙어 있는지 직접 확인..