gpt4 book ai didi

java - 使用 JpaRepository 进行动态查询

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:04:38 24 4
gpt4 key购买 nike

我正在尝试使用 JpaRepository 获取查询结果,但它对我不起作用:

public interface PeticionRepository extends JpaRepository<Peticion, Long> {

@Query(value = "select peticion from Peticion peticion where (peticion.codigo like CONCAT(?1, '%') or "
+ "peticion.contacto.direccionGeneral.nombre like CONCAT(?1, '%') or peticion.contacto.poa like CONCAT(?1, '%') or "
+ "peticion.proyecto.nombre like CONCAT (?1, '%') or peticion.datosAdicionales.estado.nombre like CONCAT(?1, '%'))")
List<Peticion> findByText(String texto);

List<Peticion> findByFilter(String unidad, String nombreIniciativa, String codigo,
LocalDate fechaConsejeroDFormat, LocalDate fechaConsejeroHFormat);
}

在其他类中,我需要覆盖函数 findByFilter,我将在其中创建查询:

public abstract class JpaPeticionRepository implements PeticionRepository {

@PersistenceContext(name = "ExterroPU")
private EntityManager em;

public void setEm(EntityManager em) {
this.em = em;
}

public List<Peticion> findByFilter(String unidad, String nombreIniciativa, String codigo,
LocalDate fechaConsejeroDFormat, LocalDate fechaConsejeroHFormat) {
List<Peticion> peticiones = new ArrayList<Peticion>();
String consulta = "select peticion from Peticion peticion ";
if(unidad!=null || nombreIniciativa!=null || codigo!=null || fechaConsejeroDFormat!=null || fechaConsejeroHFormat!=null){
consulta=consulta+" where ";
}
if(unidad!=null){
consulta = consulta+" and peticion.contacto.poa ="+unidad;
}
if(nombreIniciativa!=null){
consulta = consulta+" and peticion.proyecto.nombre ="+nombreIniciativa;
}
if(codigo!=null){
consulta = consulta+" and peticion.codigo ="+codigo;
}
if(fechaConsejeroDFormat!=null){
consulta = consulta+" and peticion.datosAdicionales.firmaConsejero<="+fechaConsejeroDFormat;
}
if(fechaConsejeroHFormat!=null){
consulta = consulta+" and peticion.datosAdicionales.firmaConsejero>="+fechaConsejeroHFormat;
}

peticiones = (List<Peticion>) em.createQuery(consulta).getResultList();
return peticiones;
}
}

此代码抛出以下异常:

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'peticionServiceImpl': Unsatisfied dependency expressed through field 'peticionRepository'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'peticionRepository': Invocation of init method failed; nested exception is org.springframework.data.mapping.PropertyReferenceException: No property filter found for type Peticion!
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:569)
at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:88)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:349)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1219)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:543)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:482)
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:751)
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:861)
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:541)
at org.springframework.boot.context.embedded.EmbeddedWebApplicationContext.refresh(EmbeddedWebApplicationContext.java:122)
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:761)
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:371)
at org.springframework.boot.SpringApplication.run(SpringApplication.java:315)
at com.endesa.mecenz.MecenzApp.main(MecenzApp.java:64)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:497)
at org.springframework.boot.devtools.restart.RestartLauncher.run(RestartLauncher.java:49)

Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'peticionRepository': Invocation of init method failed; nested exception is org.springframework.data.mapping.PropertyReferenceException: No property filter found for type Peticion!
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1583)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:545)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:482)
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306)
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230)
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302)
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202)
at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:207)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1128)
at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1056)
at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:566)
... 22 common frames omitted

Caused by: org.springframework.data.mapping.PropertyReferenceException: No property filter found for type Peticion!
at org.springframework.data.mapping.PropertyPath.<init>(PropertyPath.java:77)
at org.springframework.data.mapping.PropertyPath.create(PropertyPath.java:329)
at org.springframework.data.mapping.PropertyPath.create(PropertyPath.java:309)
at org.springframework.data.mapping.PropertyPath.from(PropertyPath.java:272)
at org.springframework.data.mapping.PropertyPath.from(PropertyPath.java:243)
at org.springframework.data.repository.query.parser.Part.<init>(Part.java:76)
at org.springframework.data.repository.query.parser.PartTree$OrPart.<init>(PartTree.java:235)
at org.springframework.data.repository.query.parser.PartTree$Predicate.buildTree(PartTree.java:373)
at org.springframework.data.repository.query.parser.PartTree$Predicate.<init>(PartTree.java:353)
at org.springframework.data.repository.query.parser.PartTree.<init>(PartTree.java:87)
at org.springframework.data.jpa.repository.query.PartTreeJpaQuery.<init>(PartTreeJpaQuery.java:63)
at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:103)
at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$CreateIfNotFoundQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:214)
at org.springframework.data.jpa.repository.query.JpaQueryLookupStrategy$AbstractQueryLookupStrategy.resolveQuery(JpaQueryLookupStrategy.java:77)
at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.<init>(RepositoryFactorySupport.java:435)
at org.springframework.data.repository.core.support.RepositoryFactorySupport.getRepository(RepositoryFactorySupport.java:220)
at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.initAndReturn(RepositoryFactoryBeanSupport.java:266)
at org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport.afterPropertiesSet(RepositoryFactoryBeanSupport.java:252)
at org.springframework.data.jpa.repository.support.JpaRepositoryFactoryBean.afterPropertiesSet(JpaRepositoryFactoryBean.java:92)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1642)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1579)
... 32 common frames omitted

我的 peticionServiceImpl 服务调用了那个方法,下面是它的代码:

public class PeticionServiceImpl implements PeticionService {

/*..
*/

@Override
public List<PeticionDTO> searchFilter( String unidad, String nombreIniciativa, String codigo,
LocalDate fechaConsejeroDFormat, LocalDate fechaConsejeroHFormat) {
return peticionMapper.peticionsToPeticionDTOs(peticionRepository.findByFilter( unidad, nombreIniciativa,
codigo, fechaConsejeroDFormat, fechaConsejeroHFormat));
}
}

Peticion bean 是:

/**
* A Peticion.
*/
@Entity
@Table(name = "peticion")
@Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
public class Peticion implements Serializable {

private static final long serialVersionUID = 1L;

@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private Long id;

@Size(max = 80)
@Column(name = "codigo", length = 80)
private String codigo;

@ManyToOne
private Resultados resultado;

@Size(max = 80)
@Column(name = "otros_resultados", length = 80)
private String otrosResultados;

@ManyToOne
private Proyecto proyecto;

@ManyToOne
private Aportacion aportacion;

@ManyToOne
private Contacto contacto;

@ManyToOne
private DatosAdicionales datosAdicionales;

public Long getId() {
return id;
}

public void setId(Long id) {
this.id = id;
}

public Resultados getResultado() {
return resultado;
}

public Peticion resultado(Resultados resultados) {
this.resultado = resultados;
return this;
}

public String getOtrosResultados() {
return otrosResultados;
}

public void setOtrosResultados(String otrosResultados) {
this.otrosResultados = otrosResultados;
}

public void setResultado(Resultados resultados) {
this.resultado = resultados;
}

public Proyecto getProyecto() {
return proyecto;
}

public Peticion proyecto(Proyecto proyecto) {
this.proyecto = proyecto;
return this;
}

public void setProyecto(Proyecto proyecto) {
this.proyecto = proyecto;
}

public Aportacion getAportacion() {
return aportacion;
}

public Peticion aportacion(Aportacion aportacion) {
this.aportacion = aportacion;
return this;
}

public void setAportacion(Aportacion aportacion) {
this.aportacion = aportacion;
}

public Contacto getContacto() {
return contacto;
}

public Peticion contacto(Contacto contacto) {
this.contacto = contacto;
return this;
}

public void setContacto(Contacto contacto) {
this.contacto = contacto;
}

public DatosAdicionales getDatosAdicionales() {
return datosAdicionales;
}

public Peticion datosAdicionales(DatosAdicionales datosAdicionales) {
this.datosAdicionales = datosAdicionales;
return this;
}

public void setDatosAdicionales(DatosAdicionales datosAdicionales) {
this.datosAdicionales = datosAdicionales;
}


public String getCodigo() {
return codigo;
}

public void setCodigo(String codigo) {
this.codigo = codigo;
}

@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Peticion peticion = (Peticion) o;
if(peticion.id == null || id == null) {
return false;
}
return Objects.equals(id, peticion.id);
}

@Override
public int hashCode() {
return Objects.hashCode(id);
}

@Override
public String toString() {
return "Peticion{" +
"id=" + id +
'}';
}
}

谁能告诉我我错过了什么?

谢谢

最佳答案

您无法像您希望的那样通过简单的字符串连接在 JPQL 中创建动态查询。

您在 Spring Data JPA 中有 3 个选项:

this question 中对这 3 种方法进行了很好的概述。

从这 3 开始,您还剩下两个,因为 Spring Data JPA 无法在 Query By Example 中的 Date 字段上执行 date aritmethic(顺便说一句,我希望它可以:https://jira.spring.io/browse/DATAJPA-985)。查看 Spring Data 博客 here对于这两个选项。

关于java - 使用 JpaRepository 进行动态查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40894679/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com