비지니스 요구사항 정리
Spring 기초를 맛보기 위한 내용이므로 간단한 데이터를 선정하여 작성
데이터 - 회원ID, 이름
기능 - 회원 등록, 조회
아직 데이터 저장소가 선정되지 않음
일반적인 웹 어플리케이션 계층 구조
컨트롤러 - 웹 MVC의 컨트롤러 역할
서비스 - 핵심 비지니스 로직 구현
리포지토리 - 데이터베이스에 접근, 도메인 객체를 DB에 저장하고 관리
도메인 - 비지니스 도메인 객체, 예) 회원, 주문, 쿠폰 등 주로 데이터베이스에 저장하고 관리됨
클래스 의존 관계
현재 데이터 저장소가 선정되지 않아서, 우선 인터페이스로 구현 클래스를 변경할 수 있도록 설계
데이터 베이스 저장소는 다양한 저장소를 고민중이라고 가정
개발을 진행하기 위해 초기 개발 단계에서는 구현체로 가벼운 메모리 기반의 데이터 저장소 사용
회원 도메인과 리포지토리 만들기
https://github.com/jong-seoung/Spring-Introduction/commit/80a6a29d86ec3ace3e61d769c309a6ae0e0fa5e3
회원 도메인과 리포지토리 만들기 · jong-seoung/Spring-Introduction@80a6a29
+ private static Map<Long, Member> store = new HashMap<>();
github.com
회원 리포지토리 테스트 케이스 작성
https://github.com/jong-seoung/Spring-Introduction/commit/a2fce15e68db6fa1cf5d0f759cb15a04990ced6a
회원 리포지토리 테스트 케이스 작성 · jong-seoung/Spring-Introduction@a2fce15
@@ -32,4 +32,8 @@ public Optional<Member> findByName(String name) {
github.com
회원 서비스 개발
https://github.com/jong-seoung/Spring-Introduction/commit/563e7270419755c055685e566632d46e469956e3
회원 서비스 개발 · jong-seoung/Spring-Introduction@563e727
+ throw new IllegalStateException("이미 존재하는 회원입니다.");
github.com
회원 서비스 테스트
https://github.com/jong-seoung/Spring-Introduction/commit/ee1b23b87017121cbd1614417417e479e881874c
회원 서비스 테스트 · jong-seoung/Spring-Introduction@ee1b23b
+ IllegalStateException e = assertThrows(IllegalStateException.class, () -> memberService.join(member2));
github.com
'Spring > 스프링 입문' 카테고리의 다른 글
[Spring] AOP (0) | 2025.03.17 |
---|---|
[Spring] 회원 관리 예제 - 웹 MVC 개발 (0) | 2025.03.17 |
[Spring] 스프링 빈과 의존관계 (0) | 2025.03.17 |
[Spring] 스프링 웹 개발 기초 (0) | 2025.03.15 |
[Spring] 프로젝트 환경 설정 (0) | 2025.03.15 |