Spring Data JPA中使用QueryDSL进行查询
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Data JPA中使用QueryDSL进行查询相关的知识,希望对你有一定的参考价值。
参考技术A 插件的作用是把带有 @Entity 注解的实体类在指定路径 target/generated-sources/java 下生成一个衍生的实体类,我们后面就是用这个衍生出来的实体类去构建动态查询的条件进行动态查询。如果是 IDEA 工具,执行 Maven 插件的 compile 就能在指定目录生成 QActor 类。
如果是 Eclipse ,右键项目工程,执行 maven 的 update 操作就可以在指定目录中生成实体类。
需要继承 QuerydslPredicateExecutor
在 Spring 3.1.0 中使用 Spring Data JPA
【中文标题】在 Spring 3.1.0 中使用 Spring Data JPA【英文标题】:Using Spring Data JPA with Spring 3.1.0 【发布时间】:2012-03-25 23:25:21 【问题描述】:有人知道如何使用 Spring Data JPA 和 Spring 3.1.0/3.1.1 吗?
Spring Data JPA 1.0.3 依赖于 spring 3.0.5,所以只要我添加一个 spring data jpa 作为依赖项,我就会在使用 3.1.0 时遇到冲突。
我尝试过使用 maven excludes,但没有取得多大成功。
【问题讨论】:
【参考方案1】:我成功地将 Spring Data JPA 1.0.3 与 Spring 3.1.0 集成。这是一个看起来不错的剥离pom.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>example</artifactId>
<version>1.0.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>3.1.0.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
<version>3.1.0.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>3.1.0.RELEASE</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>3.1.0.RELEASE</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
<version>1.0.3.RELEASE</version>
</dependency>
</dependencies>
</project>
看看传递依赖,一切似乎都很好:
$ mvn dependency:tree
com.example:example:jar:1.0.0-SNAPSHOT
+- org.springframework:spring-core:jar:3.1.0.RELEASE:compile
| +- org.springframework:spring-asm:jar:3.1.0.RELEASE:compile
| \- commons-logging:commons-logging:jar:1.1.1:compile
+- org.springframework:spring-aspects:jar:3.1.0.RELEASE:compile
| +- org.springframework:spring-beans:jar:3.1.0.RELEASE:compile
| +- org.springframework:spring-context:jar:3.1.0.RELEASE:compile
| | +- org.springframework:spring-aop:jar:3.1.0.RELEASE:compile
| | \- org.springframework:spring-expression:jar:3.1.0.RELEASE:compile
| \- org.springframework:spring-context-support:jar:3.1.0.RELEASE:compile
+- org.springframework:spring-orm:jar:3.1.0.RELEASE:compile
| +- org.springframework:spring-jdbc:jar:3.1.0.RELEASE:compile
| \- org.springframework:spring-tx:jar:3.1.0.RELEASE:compile
| \- aopalliance:aopalliance:jar:1.0:compile
+- org.springframework:spring-test:jar:3.1.0.RELEASE:test (scope not updated to compile)
\- org.springframework.data:spring-data-jpa:jar:1.0.3.RELEASE:compile
+- org.springframework.data:spring-data-commons-core:jar:1.1.0.RELEASE:compile
+- org.slf4j:slf4j-api:jar:1.6.1:compile
+- org.slf4j:jcl-over-slf4j:jar:1.6.1:runtime
\- org.aspectj:aspectjrt:jar:1.6.8:compile
你有什么样的冲突?
【讨论】:
是的,你会得到很多:org.springframework:spring-beans:jar:3.0.5.RELEASE:compile - omitted for conflict with 3.1.0.RELEASE
- 这很好,maven 选择了更新的或明确声明的依赖项。功能,而不是错误:-)。您的最终工件将使用更新的版本。以上是关于Spring Data JPA中使用QueryDSL进行查询的主要内容,如果未能解决你的问题,请参考以下文章
Spring Data 系列 Spring+JPA(spring-data-commons)
学习Spring-Data-Jpa(二十)---@EnableJpaRepositories
spring data jpa中的page对象带到jsp页面遍历问题
处理 JPA 规范和 spring-data-jpa 时如何使用声明 Stream 作为返回类型
spring data jpa使用spring data jpa时,关于service层一个方法中进行删除和插入两种操作在同一个事务内处理