从SpringData的QueryDSL SimpleEntityPathResolver

时间:2018-01-31 13:46:59

标签: mongodb spring-boot spring-data querydsl

我正在尝试将QueryDSL与SpringData以及Mongo存储库一起使用。

以下是文档类层次结构的三个级别的简化:

顶级实体类

public abstract class AbstractEntity<T extends Serializable> {
    public abstract T getId();
    ...
}

Document(Mongo)实体的基类

import org.springframework.data.annotation.Id;
import com.querydsl.core.annotations.QueryEntity;   

@QueryEntity
public abstract class DocumentEntity extends AbstractEntity<String> {
    @Id
    private String id;

    public DocumentEntity() {
    }

    public String getId() {
        return id;
    }
    ...
}

实际实体/文件实施

import org.springframework.data.mongodb.core.index.TextIndexed;
import org.springframework.data.mongodb.core.mapping.Document;
import com.blah.data.entity.DocumentEntity;
import com.querydsl.core.annotations.QueryEntity;

@QueryEntity
@Document(collection="Manufacturers")
public class Manufacturer extends DocumentEntity {
    @TextIndexed
    private String name;

    public Manufacturer() {
    }
    ...
}

我认为,这里的主要版本数量是

  • SpringBoot:1.5.9.RELEASE
  • QueryDSL:4.1.4

这是我的插件配置:

<plugin>
<groupId>com.mysema.maven</groupId>
<artifactId>apt-maven-plugin</artifactId>
<version>1.1.3</version>
<executions>
<execution>
    <goals>
    <goal>process</goal>
    </goals>
    <configuration>
    <outputDirectory>target/generated-sources/java</outputDirectory>
    <processor> org.springframework.data.mongodb.repository.support.MongoAnnotationProcessor</processor>
    </configuration>
</execution>
</executions>

&#34; Q&#34;类在我的maven构建中成功生成。但是,我的QDocumentEntity查询类扩展了BeanPath,我的QManufacturer查询类扩展了EntityPathBase。这似乎是问题的根源。

当我启动我的应用程序时,出现以下根本原因的异常:

Caused by: java.lang.ClassCastException: com.blah.data.entity.QDocumentEntity cannot be cast to com.querydsl.core.types.EntityPath
at org.springframework.data.querydsl.SimpleEntityPathResolver.createPath(SimpleEntityPathResolver.java:59)
at org.springframework.data.mongodb.repository.support.QueryDslMongoRepository.<init>(QueryDslMongoRepository.java:85)
at org.springframework.data.mongodb.repository.support.QueryDslMongoRepository.<init>(QueryDslMongoRepository.java:67)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:142)

基于此错误,似乎应该生成超类DocumentEntity作为扩展EntityPathBase。

我不确定它是否相关,但AbstractEntity和DocumentEntity类位于一个单独的maven模块中。

我是否遗漏了将超类标记为插件实体所需的内容?如何强制生成器将超类看作实体?

1 个答案:

答案 0 :(得分:0)

到目前为止,我发现了两件事。在这一点上,这两件事就足以成为一种解决方法。

我在Eclipse中运行了maven构建,以便我可以逐步调试注释处理器正在做的事情。这让我第一次意识到。

我的父类DocumentEntity未在com.querydsl.apt.ExtendedTypeFactory.createClassType()中被识别为实体。初始确定的类型是TypeCategory.SIMPLE,它从未被翻转到TypeCategory.ENTITY,因为父类中没有定义的entityAnnotations。为了将其识别为实体,必须有一个定义的注释:实体,超类型或可嵌入。 Springframework的MongoAnnotationProcessor将它们定义为Document.class,QuerySupertype.class和QueryEmbeddable.class。

所以,我将@QuerySupertype添加到我的DocumentEntity类中并得到了一个不同的错误。

/target/generated-sources/java/com/blah/entity/QManufacturer.java:22: error: cannot find symbol
    public final com.blah.data.entity.QDocumentEntity _super = new com.blah.data.entity.QDocumentEntity(this);
                                          ^
  symbol:   class QDocumentEntity
  location: package com.blah.data.entity
1 error

正如我在OP中提到的,父类在另一个模块中。如果我将DocumentEntity(带有适当的注释)移动到同一个模块中,它似乎按预期工作。 QDocumentEntity类正确扩展了EntityPathBase。

我不会将答案标记为已被接受,因为在我看来,即使我能够做出改变并继续前进,它仍然没有得到很好的回答。

我不知道它是否与每个模块的APT处理时间有关。或者

我真的希望在一个可共享模块中有一个基础“Document”实体类,然后从中扩展特定的子模块,并仍然生成相应的Q类。我的假设是我仍然缺少一些东西。

如果时间允许,我可能会尝试逐步完成APT处理以查看是否可以找到它的底部。