일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 페이코 친구코드
- 자바
- 페이코 추천인
- 페이코 초대코드
- php 프로그래밍
- 스프링
- 배열
- SWEA
- php 프로그래밍 입문 문제풀이
- php 프로그래밍 입문 예제
- php
- JAVA SPRING
- spring
- 한정 분기
- 백준
- 플러터
- Flutter
- php 프로그래밍 입문 3판
- 파이썬
- php 프로그래밍 입문
- C언어
- Java
- php 프로그래밍 입문 연습문제
- programmers
- C
- 최단 경로
- 자바 스프링
- 페이코 추천인코드
- php 프로그래밍 입문 솔루션
- 플러터 개발환경 설정
Archives
- Today
- Total
11-08 03:45
ImJay
[Java Spring] 2-13. 주문과 할인 도메인 개발 본문
반응형
[Java Spring] 2-13. 주문과 할인 도메인 개발
1. main > java > hello.core 에 discount 패키지 생성
2. DiscountPolicy 인터페이스 생성
3. 코드 작성
package hello.core.discount;
import hello.core.member.Member;
public interface DiscountPolicy {
/**
* @return 할인 대상 금액
*/
int discount(Member member, int price);
}
4. FixDiscountPolicy 클래스 생성
5. 코드 작성
package hello.core.discount;
import hello.core.member.Grade;
import hello.core.member.Member;
public class FixDiscountPolicy implements DiscountPolicy{
private int discountFixAmount = 1000; // 1000원 할인
@Override
public int discount(Member member, int price) {
if (member.getGrade() == Grade.VIP) {
return discountFixAmount;
} else {
return 0;
}
}
}
6. main > java > hello.core 에 order 패키지 생성
7. Order 클래스 생성
8. 코드 작성
package hello.core.order;
public class Order {
private Long memberId;
private String itemName;
private int itemPrice;
private int discountPrice;
public Order(Long memberId, String itemName, int itemPrice, int discountPrice) {
this.memberId = memberId;
this.itemName = itemName;
this.itemPrice = itemPrice;
this.discountPrice = discountPrice;
}
public int calculatePrice() {
return itemPrice - discountPrice;
}
public Long getMemberId() {
return memberId;
}
public void setMemberId(Long memberId) {
this.memberId = memberId;
}
public String getItemName() {
return itemName;
}
public void setItemName(String itemName) {
this.itemName = itemName;
}
public int getItemPrice() {
return itemPrice;
}
public void setItemPrice(int itemPrice) {
this.itemPrice = itemPrice;
}
public int getDiscountPrice() {
return discountPrice;
}
public void setDiscountPrice(int discountPrice) {
this.discountPrice = discountPrice;
}
@Override
public String toString() {
return "Order{" +
"memberId=" + memberId +
", itemName='" + itemName + '\'' +
", itemPrice=" + itemPrice +
", discountPrice=" + discountPrice +
'}';
}
}
- 값의 계산을 위한 메서드 calculatePrice
- 출력을 위한 toString ( 단축키 to + tab )
9. OrderService 인터페이스 생성
10. 코드 작성
package hello.core.order;
public interface OrderService {
Order createOrder(Long memberId, String itemName, int itemPrice);
}
- createOrder 메서드는 위 그림에서 4번에 해당하는 부분이다.
11. OrderServiceImpl 클래스 생성
12. 코드 작성
package hello.core.order;
import hello.core.discount.DiscountPolicy;
import hello.core.discount.FixDiscountPolicy;
import hello.core.member.Member;
import hello.core.member.MemberRepository;
import hello.core.member.MemoryMemberRepository;
public class OrderServiceImpl implements OrderService {
private final MemberRepository memberRepository = new MemoryMemberRepository();
private final DiscountPolicy discountPolicy = new FixDiscountPolicy();
@Override
public Order createOrder(Long memberId, String itemName, int itemPrice) {
Member member = memberRepository.findById(memberId);
int discountPrice = discountPolicy.discount(member, itemPrice);
return new Order(memberId, itemName, itemPrice, discountPrice);
}
}
- 주문 생성 요청이 오면, 회원 정보를 조회하고, 할인 정책을 적용한 다음 주문 객체를 생성해서 반환한다.
- 메모리 회원 리포지토리와, 고정 금액 할인 정책을 구현체로 생성한다.
반응형
'Java Spring > 스프링 핵심 원리 - 기본편' 카테고리의 다른 글
[Java Spring] 2-15. 새로운 할인 정책 개발 (0) | 2023.02.27 |
---|---|
[Java Spring] 2-14. 주문과 할인 도메인 실행과 테스트 (0) | 2023.02.27 |
[Java Spring] 2-12. 주문과 할인 도메인 설계 (0) | 2023.02.27 |
[Java Spring] 2-11. 회원 도메인 실행과 테스트 (0) | 2023.02.27 |
[Java Spring] 2-10. 회원 도메인 개발 (0) | 2023.02.20 |
Comments