-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathBaseRepositoryImpl.java
More file actions
93 lines (69 loc) · 2.03 KB
/
BaseRepositoryImpl.java
File metadata and controls
93 lines (69 loc) · 2.03 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package org.example;
import jakarta.persistence.EntityManager;
import java.util.Optional;
public class BaseRepositoryImpl<T extends org.example.BaseEntity> implements Repository<T> {
protected EntityManager em;
protected Class<T> entityClass;
public BaseRepositoryImpl(Class<T> entityClass) {
this.entityClass = entityClass;
}
public void setEntityManager(EntityManager em) {
this.em = em;
}
@Override
public T save(T entity) {
if (entity == null) {
throw new IllegalArgumentException("Entity cannot be null");
}
if (entity.getId() == null) {
em.persist(entity);
return entity;
} else {
return em.merge(entity);
}
}
public EntityManager getEntityManager() {
return em;
}
@Override
public Optional<T> findById(Long id) {
return Optional.ofNullable(em.find(entityClass, id));
}
@Override
public void delete(T entity) {
em.remove(em.contains(entity) ? entity : em.merge(entity));
}
@Override
public void deleteById(Long id) {
T entity = em.find(entityClass, id);
if (entity != null) {
em.remove(entity);
}
}
@Override
public Iterable<T> findAll() {
return em.createQuery(
"select e from " + entityClass.getSimpleName() + " e", entityClass
).getResultList();
}
@Override
public boolean existsById(Long id) {
Long count = em.createQuery(
"select count(e) from " + entityClass.getSimpleName() + " e where e.id = :id",
Long.class
).setParameter("id", id).getSingleResult();
return count > 0;
}
@Override
public long count() {
return em.createQuery("select count(e) from " + entityClass.getSimpleName() + " e", Long.class).getSingleResult();
}
@Override
public void flush() {
em.flush();
}
@Override
public void clear() {
em.clear();
}
}