스프링 부트와 JPA 활용1 - 웹 애플리케이션 개발 [김영한 강사님]
Item
package jpabook.jpashop.domain.item;
import jpabook.jpashop.exception.NotEnoughStockException;
import lombok.Getter;
import lombok.Setter;
import jpabook.jpashop.domain.Category;
import javax.persistence.*;
import java.util.ArrayList;
import java.util.List;
@Entity
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(name = "dtype")
@Getter @Setter
public abstract class Item {
@Id @GeneratedValue
@Column(name = "item_id")
private Long id;
private String name;
private int price;
private int stockQuantity;
@ManyToMany(mappedBy = "items")
private List<Category> categories = new ArrayList<Category>();
//==비즈니스 로직==//
/**
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;
}
}
NotEnoughStockException
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
package jpabook.jpashop.repository;
import jpabook.jpashop.domain.item.Item;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Repository;
import javax.persistence.EntityManager;
import java.util.List;
@Repository
@RequiredArgsConstructor
public class ItemRepository {
private final EntityManager em;
public void save(Item item) {
//id가 없으면 신규로 보고 persist() 실행(id값이 없다는 것은 새로 생성하는 객체)
if (item.getId() == null) {
em.persist(item);
} else { //id가 있으면 이미 데이터베이스에 저장된 엔티티 수정한다고 보고, merge 실행
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();
}
}
상품 서비스는 상품 리포지토리에 단순히 위임만 하는 클래스이다.
그래서 위임만 한다면 controller에서 repository로 바로 접근하는것도 괜찮다.
ItemService
package jpabook.jpashop.service;
import jpabook.jpashop.domain.item.Item;
import jpabook.jpashop.repository.ItemRepository;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import java.util.List;
@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);
}
}