From 0b6354eb47553566bca10571d82064535eded6dd Mon Sep 17 00:00:00 2001 From: Jens Schauder Date: Tue, 17 Apr 2018 15:01:20 +0200 Subject: [PATCH] DATAJDBC-206 - Reflected DATAJDBC-130 in the README. Original pull request: #61. --- README.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.adoc b/README.adoc index 3148e0d74..b8cc92140 100644 --- a/README.adoc +++ b/README.adoc @@ -94,6 +94,8 @@ This name can be changed by implementing `NamingStrategy.getReverseColumnName(Jd The table of the referenced entity is expected to have two additional columns: One named like the table of the referencing entity for the foreign key and one with the same name and an additional `_key` suffix for the map key. This name can be changed by implementing `NamingStrategy.getReverseColumnName(JdbcPersistentProperty property)` and `NamingStrategy.getKeyColumn(JdbcPersistentProperty property)` according to your preferences. +* `List` will be mapped like a `Map`. + The handling of referenced entities is very limited. Part of this is because this project is still before its first release. @@ -331,8 +333,6 @@ You can customize the namespace part of a statement name using https://github.co The current MyBatis supported is rather elaborate in that it allows to execute multiple statements for a single method call. But sometimes less is more, and it should be possible to annotate a method with a simple annotation to identify a SQL statement in a MyBatis mapping to be executed. -=== Support of lists in entities - == Spring Boot integration There is https://github.com/schauder/spring-data-jdbc-boot-starter[preliminary Spring Boot integration].