jpashop : item repository
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
package com.example.jpashop.repository;
|
||||
|
||||
import com.example.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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user