我有一个实体,它将与 Spring Data 一起保存到 Mongo 数据库:
@Document
public class MyEntity {
@Id
private String id;
@QueryType(PropertyType.DATETIME)
private DateTime lastUpdate;
}
这是我的存储库:
public interface MyEntityRepository extends
MongoRepository<MyEntity, String>,
QueryDslPredicateExecutor<MyEntity> {}
以及我的 pom.xml 中用于 QueryDSL 生成的插件
<plugin>
<groupId>com.mysema.maven</groupId>
<artifactId>apt-maven-plugin</artifactId>
<version>1.0.8</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>process</goal>
</goals>
<configuration>
<outputDirectory>target/generated-sources</outputDirectory>
<processor>org.springframework.data.mongodb.repository.support.MongoAnnotationProcessor</processor>
</configuration>
</execution>
</executions>
</plugin>
尽管如此,它将 DateTime 视为常规实体(我尝试过使用和不使用 QueryType)。我希望它被视为日期,所以我可以进行比较,因为现在我不能:
Predicate predicate = QMyEntity.myentity.lastUpdate... // where are the lessThan or greaterThan methods?
当然,如果可能的话,我想坚持使用 JodaTime,而不是回退到 Java Date,或者将日期存储为毫秒。