See https://spring.io/admin/blog/4540-spring-data-jdbc-how-do-update-just-the-aggregate-root-instead-of-all-the-referenced-entities
21 lines
814 B
XML
21 lines
814 B
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-how-to-selective-update</artifactId>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.data.examples</groupId>
|
|
<artifactId>spring-data-jdbc-how-to</artifactId>
|
|
<version>2.0.0.BUILD-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<name>Spring Data JDBC - How to do selective updates</name>
|
|
<description>Sample project for Spring Data JDBC demonstrating how to update only parts of an aggregate.
|
|
</description>
|
|
<url>https://projects.spring.io/spring-data-jdbc</url>
|
|
<inceptionYear>2022</inceptionYear>
|
|
|
|
</project>
|