Query by Id works via the repository. Query derivation doesn't since it side steps the DataAccessStrategy. Closes #675
44 lines
1.2 KiB
XML
44 lines
1.2 KiB
XML
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-data-jdbc-examples</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.data.examples</groupId>
|
|
<artifactId>spring-data-examples</artifactId>
|
|
<version>2.0.0.BUILD-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<name>Spring Data JDBC - Examples</name>
|
|
<description>Sample projects for Spring Data JDBC</description>
|
|
<url>https://projects.spring.io/spring-data-jdbc</url>
|
|
<inceptionYear>2017</inceptionYear>
|
|
|
|
<modules>
|
|
<module>basics</module>
|
|
<module>howto</module>
|
|
<module>immutables</module>
|
|
<module>jmolecules</module>
|
|
<module>jooq</module>
|
|
<module>singlequeryloading</module>
|
|
<!-- <module>mybatis</module> -->
|
|
<module>graalvm-native</module>
|
|
</modules>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.data</groupId>
|
|
<artifactId>spring-data-jdbc</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.hsqldb</groupId>
|
|
<artifactId>hsqldb</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|