Spring 싱글톤 컨테이너
1️⃣ Web Application 과 싱글톤Spring 은 태생이 기업용 온라인 서비스 기술을 지원하기 위해 탄생대부분의 Spring Application 은 Web Application 이다. 물론 Web 이 아닌 Application 개발도 얼마든지 개발할 수 있다.Web Application 은 보통 여러 고객이 동시에 요청을 한다. Spring 이 없는 순수한 DI Container Testpackage hello.core.singleton;import hello.core.AppConfig;import hello.core.member.MemberService;import org.assertj.core.api.Assertions;import org.junit.jupiter.api.DisplayNa..