简体   繁体   English

使用JpaRepository进行动态查询

[英]Dynamic query using JpaRepository

I'm trying to get a result of a query using JpaRepository, but it doesn't work for me : 我正在尝试使用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);
}

And in other class I need to overwrite the function findByFilter where I'm going to create my query: 在其他类中我需要覆盖函数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;
    }
}

This code throws the following exception: 此代码抛出以下异常:

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

My peticionServiceImpl service calles that methode, here is its code bellow: 我的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));
    }
}

The Peticion bean is: Peticion豆是:

/**
* 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 +
            '}';
    }
}

Can anyone please tell me what did I miss? 谁能告诉我我错过了什么?

Thank you 谢谢

You cant create dynamic queries in JPQL like you want with easy string concatenation. 您无法使用简单的字符串连接在JPQL中创建动态查询。

You have 3 options in Spring Data JPA: Spring Data JPA中有3个选项:

There is a nice overview of the 3 methods in this question 这个问题中有3个方法的概述

From this 3 you have two left because Spring Data JPA cant do date aritmethic on Date fields in Query By Example (BTW i wish it could: https://jira.spring.io/browse/DATAJPA-985 ). 从这3个你剩下两个因为Spring Data JPA不能在Query By Example中的Date字段上做日期aritmethic(BTW我希望它可以: https ://jira.spring.io/browse/DATAJPA-985)。 Take a look at the Spring Data Blog here for these two options. 这里看一下Spring Data Blog这两个选项。

I think the findByFilter method is a default method of the repository. 我认为findByFilter方法是存储库的默认方法。

By not annotating it will search for a field called filter and implementation is not necessary. 通过不注释,它将搜索称为过滤器的字段,并且不需要实现。

Try changing the name of the method to 'abcdef' 尝试将方法名称更改为'abcdef'

Maybe I can help you this link to customize it. 也许我可以帮助你这个链接来定制它。

I'm posting the solution here. 我在这里发布解决方案。

I didn't use the JPARepository , I added the treatment of my request in the ServiceImpl , directly injecting the EntityManager in this way: an example taking as filter just unidad (i can add others) 我没有使用JPARepository ,我在ServiceImpl添加了对我的请求的处理,直接以这种方式注入EntityManager :作为过滤器的示例只是unidad(我可以添加其他)

public class PeticionServiceImpl implements PeticionService {

/*..
 */
@Inject
private EntityManager em;

@Override
public List<PeticionDTO> searchFilter( String unidad) {
    String consulta = "select peticion from Peticion peticion ";
    if (unidad != null && !"".equals(unidad)) {
        consulta = consulta + " where ";

        if (unidad != null && !"".equals(unidad)) {
            consulta = consulta
                    + " UPPER(translate(peticion.contacto.poa, 'áéíóúÁÉÍÓÚ', 'aeiouAEIOU')) LIKE UPPER(translate('%"
                    + unidad + "%', 'áéíóúÁÉÍÓÚ', 'aeiouAEIOU')) ";
            filtro = true;
        }
    }
    peticiones = peticionMapper.peticionsToPeticionDTOs((List<Peticion>) em.createQuery(consulta).getResultList());
    return peticiones;
}

} }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM