com.github.aqiu202.starters.jpa.query.dsl.SimpleJPAQueryExecutor Maven / Gradle / Ivy
package com.github.aqiu202.starters.jpa.query.dsl;
import com.querydsl.core.Tuple;
import com.querydsl.core.dml.InsertClause;
import com.querydsl.core.types.EntityPath;
import com.querydsl.core.types.Expression;
import com.querydsl.core.types.dsl.Expressions;
import com.querydsl.jpa.JPQLTemplates;
import com.querydsl.jpa.impl.JPADeleteClause;
import com.querydsl.jpa.impl.JPAInsertClause;
import com.querydsl.jpa.impl.JPAUpdateClause;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.annotation.Nullable;
import javax.inject.Provider;
import javax.persistence.EntityManager;
import org.springframework.data.jpa.repository.support.JpaMetamodelEntityInformation;
import org.springframework.data.repository.core.EntityInformation;
import org.springframework.transaction.annotation.Transactional;
@Transactional
public class SimpleJPAQueryExecutor implements JPAQueryExecutor {
@Nullable
private final JPQLTemplates templates;
private final Provider entityManager;
private final Map> entityInformationMap = new HashMap<>();
public SimpleJPAQueryExecutor(final EntityManager entityManager) {
this.entityManager = () -> entityManager;
this.templates = null;
}
public SimpleJPAQueryExecutor(@Nullable JPQLTemplates templates,
final EntityManager entityManager) {
this.entityManager = () -> entityManager;
this.templates = templates;
}
public SimpleJPAQueryExecutor(Provider entityManager) {
this.entityManager = entityManager;
this.templates = null;
}
public SimpleJPAQueryExecutor(@Nullable JPQLTemplates templates,
Provider entityManager) {
this.entityManager = entityManager;
this.templates = templates;
}
@Override
public JPADeleteClause delete(EntityPath> path) {
if (templates != null) {
return new JPADeleteClause(entityManager.get(), path, templates);
} else {
return new JPADeleteClause(entityManager.get(), path);
}
}
@Override
public JPANAQuery select(Expression expr) {
return query().select(expr);
}
@Override
public JPANAQuery select(Expression>... exprs) {
return query().select(exprs);
}
@Override
public JPANAQuery selectDistinct(Expression expr) {
return select(expr).distinct();
}
@Override
public JPANAQuery selectDistinct(Expression>... exprs) {
return select(exprs).distinct();
}
@Override
public JPANAQuery selectOne() {
return select(Expressions.ONE);
}
@Override
public JPANAQuery selectZero() {
return select(Expressions.ZERO);
}
@Override
public JPANAQuery selectFrom(EntityPath from) {
return select(from).from(from);
}
@Override
public JPANAQuery> from(EntityPath> from) {
return query().from(from);
}
@Override
public JPANAQuery> from(EntityPath>... from) {
return query().from(from);
}
@Override
public JPAUpdateClause update(EntityPath> path) {
if (templates != null) {
return new JPAUpdateClause(entityManager.get(), path, templates);
} else {
return new JPAUpdateClause(entityManager.get(), path);
}
}
@Override
public InsertClause> insert(EntityPath> path) {
if (templates != null) {
return new JPAInsertClause(entityManager.get(), path, templates);
} else {
return new JPAInsertClause(entityManager.get(), path);
}
}
@Override
public JPANAQuery> query() {
if (templates != null) {
return new JPANAQuery(entityManager.get(), templates);
} else {
return new JPANAQuery(entityManager.get());
}
}
@Override
@SuppressWarnings("unchecked")
@Transactional
public T save(T entity) {
Class aClass = (Class) entity.getClass();
String classKey = aClass.getName();
EntityInformation entityInformation;
EntityManager entityManager = this.entityManager.get();
if ((entityInformation = (EntityInformation) this.entityInformationMap.get(classKey))
== null) {
entityInformation = new JpaMetamodelEntityInformation<>(aClass,
this.entityManager.get().getMetamodel());
synchronized (this.entityInformationMap) {
this.entityInformationMap.put(classKey, entityInformation);
}
}
if (entityInformation.isNew(entity)) {
entityManager.persist(entity);
return entity;
} else {
return entityManager.merge(entity);
}
}
@Override
@Transactional
public T saveAndFlush(T entity) {
T result = save(entity);
this.entityManager.get().flush();
return result;
}
@Override
@Transactional
public List save(Iterable entities) {
List result = new ArrayList<>();
if (entities == null) {
return result;
}
for (T entity : entities) {
result.add(save(entity));
}
return result;
}
}