Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 백준 4358번
- 데이터베이스
- 리액트 네이티브 시작하기
- 팀플회고
- 모두를위한딥러닝
- 네트워크
- 깃 터미널 연동
- 딥러닝
- HTTP
- 자바
- 스터디
- 모두의 네트워크
- 백준 5525번
- 머신러닝
- 깃 연동
- 데베
- 리액트 네이티브
- 모두의네트워크
- React Native
- 깃허브 토큰 인증
- 문자열
- 백준 4358 자바
- 모두를 위한 딥러닝
- 정리
- 깃허브 로그인
- 리액트 네이티브 프로젝트 생성
- 백준 4949번
- 백준
- 지네릭스
- SQL
Archives
- Today
- Total
솜이의 데브로그
[Spring Boot] 상품 도메인 개발 본문
Reference : Inflearn 실전 스프링부트와 JPA 활용 1 (김영한님 강의)
상품 도메인 개발
상품 엔티티 개발
상품 등록, 상품 목록 조회, 상품 수정 기능을 포함한 상품 엔티티를 개발해보자.
//==비즈니스 로직==//
/**
* stock 증가
* */
public void addStack(int quantity){
this.sotckQuantity += quantity;
}
/**
* stock 감소
* */
public void removeStock(int quantity){
int restStock = this.sotckQuantity - quantity;
if(restStock<0){
throw new NotEnoughStockException("need more stock");
}
this.sotckQuantity = restStock;
}
- Item.java에서 재고 증가, 감소하는 로직을 추가
- data를 가지고 있는 쪽에 비즈니스 로직을 가지고 있는게 관리하기 좋다.
예외 추가 (NotEnoughStockException)
package jpabook.jpashop.exceptioin;
public class NotEnoughStockException extends RuntimeException {
public NotEnoughStockException() {
super();
}
public NotEnoughStockException(String message, Throwable cause) {
super(message, cause);
}
public NotEnoughStockException(Throwable cause) {
super(cause);
}
protected NotEnoughStockException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
- ctrl+O 해서 RuntimeException Exception override
상품 리포지토리 개발
repository/ItemRepository.java
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){
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();
}
}
- item은 jpa에 저장하기 전까지 id값이 없다. 즉, 새로 생성한 객체.
- 따라서 em.persist로 신규 등록하기. update하는거라고 생각하자.
상품 서비스 개발
service/ItemService.java
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);
}
}
- 상품 서비스는 상품 리포지토리에 단순히 위임만 하는 클래스이다.
'dev > Spring Boot' 카테고리의 다른 글
[SpringBoot] 웹 계층 개발(1) (0) | 2022.03.25 |
---|---|
[Spring Boot] 주문 도메인 개발(2) (0) | 2021.12.03 |
[Spring Boot] 주문 도메인 개발(1) (0) | 2021.11.17 |
[Spring Boot] 회원 도메인 개발 (0) | 2021.11.10 |
[Spring Boot] 엔티티 설계 시 주의점 (0) | 2021.10.09 |