Browse Source

DATAJDBC-206 - Polishing.

Formatting.

Original pull request: #61.
pull/62/merge
Kazuki Shimizu 8 years ago committed by Jens Schauder
parent
commit
2089ad7f0d
  1. 16
      README.adoc

16
README.adoc

@ -131,12 +131,12 @@ You can configure the `RowMapper` to use, using either the `@Query(rowMapperClas @@ -131,12 +131,12 @@ You can configure the `RowMapper` to use, using either the `@Query(rowMapperClas
[source,java]
----
@Bean
RowMapperMap rowMappers() {
return new ConfigurableRowMapperMap() //
.register(Person.class, new PersonRowMapper()) //
.register(Address.class, new AddressRowMapper());
}
@Bean
RowMapperMap rowMappers() {
return new ConfigurableRowMapperMap() //
.register(Person.class, new PersonRowMapper()) //
.register(Address.class, new AddressRowMapper());
}
----
@ -189,7 +189,7 @@ You can tweak that by providing a https://github.com/spring-projects/spring-data @@ -189,7 +189,7 @@ You can tweak that by providing a https://github.com/spring-projects/spring-data
| Class | Description
| https://github.com/spring-projects/spring-data-jdbc/blob/master/src/main/java/org/springframework/data/jdbc/mapping/model/DelimiterNamingStrategy.java[`DelimiterNamingStrategy`]
| The delimiter character implementation of NamingStrategy. The default delimiter is `_`(underscore), resulting in snake case. This class does not used by default.
| The delimiter character implementation of NamingStrategy. The default delimiter is `_`(underscore), resulting in snake case.
|===
@ -323,9 +323,7 @@ You can customize the namespace part of a statement name using https://github.co @@ -323,9 +323,7 @@ You can customize the namespace part of a statement name using https://github.co
=== Advanced query annotation support
* customizable `RowMapper`
* projections
* modifying queries
* SpEL expressions
=== MyBatis per method support

Loading…
Cancel
Save