[JPA 활용1] 상품 도메인 개발

kiteB·2021년 10월 27일
0

JPA

목록 보기
17/28
post-thumbnail

[ 상품 엔티티 개발 (비즈니스 로직 추가) ]

1. Item.java

  • 기존 Item.java에 비즈니스 로직 추가
public abstract class Item {

    ...
    
    //==비즈니스 로직==//

    /**
     * stock 증가
     */
    public void addStock(int quantity) {
        this.stockQuantity += quantity;
    }

    /**
     * stock 감소
     */
    public void removeStock(int quantity) {
        int restStock = this.stockQuantity - quantity;
        if (restStock < 0) {
            throw new NotEnoughStockException("need more stock");
        }
        this.stockQuantity = restStock;
    }
}
  • addStock()
    • 파라미터로 넘어온 수(quantity)만큼 재고를 늘린다.
    • 재고가 증가하거나 상품 주문을 취소해서 재고를 다시 늘려야할 때 이 메서드를 사용한다.
  • removeStock()
    • 파라미터로 넘어온 수(quantity)만큼 재고를 줄인다.
      만약 재고가 부족하면 예외가 발생한다. (NotEnoughStockException)
    • 주로 상품을 주문할 때 사용한다

2. 예외 추가 - NotEnoughStockException.java

package jpabook.jpashop.exception;

public class NotEnoughStockException extends RuntimeException {

    public NotEnoughStockException() {
    }

    public NotEnoughStockException(String message) {
        super(message);
    }

    public NotEnoughStockException(String message, Throwable cause) {
        super(message, cause);
    }

    public NotEnoughStockException(Throwable cause) {
        super(cause);
    }

[ 상품 리포지토리 개발 ]

ItemRepository.java

@Repository
@RequiredArgsConstructor
public class ItemRepository {

    private final EntityManager em;

    public void save(Item item) {
        if (item.getId() == null) {
            em.persist(item);
        } else {
            em.merge(item);
        }
    }

    public Item findOne(Long id) {
        return em.find(Item.class, id);
    }

    public List<Item> findAll() {
        return em.createQuery("select i from Item i", Item.class)
                .getResultList();
    }
}
  • save()
    • id가 없으면 신규로 보고 persist()를 실행한다.
    • id가 있으면 이미 데이터베이스에 저장된 엔티티를 수정한다고 보고,
      merge()를 실행한다.

[ 상품 서비스 개발 ]

ItemService.java

@Service
@Transactional(readOnly = true)
@RequiredArgsConstructor
public class ItemService {

    private final ItemRepository itemRepository;

    @Transactional
    public void saveItem(Item item) {
        itemRepository.save(item);
    }

    public List<Item> findItems() {
        return itemRepository.findAll();
    }

    public Item findOne(Long itemId) {
        return itemRepository.findOne(itemId);
    }
}
  • 상품 리포지토리에 단순히 위임만 하는 클래스!
profile
🚧 https://coji.tistory.com/ 🏠

0개의 댓글