
[스프링 핵심 원리 - 기본편] 5. 싱글톤 컨테이너
·
인프런 Spring 강의 정리/Spring 핵심 원리 - 기본편
📌 웹 애플리케이션과 싱글톤 ✔ 스프링 : 태생이 기업용 온라인 서비스 기술을 지원하기 위해 탄생 대부분의 스프링 애플리케이션은 웹 애플리케이션임 물론 웹이 아닌 애플리케이션 개발도 얼마든지 개발 가능 ✔ 웹 애플리케이션은 보통 여러 고객이 동시에 요청 ⚡ 스프링 없는 순수한 DI 컨테이너 테스트 🔶 test/.../hello/core/singleton/SingletonTest package hello.core.singleton; import hello.core.AppConfig; import hello.core.member.MemberService; import org.assertj.core.api.Assertions; import org.junit.jupiter.api.DisplayName; impo..