Skip to content

Commit 2089ad7

Browse files
kazuki43zooschauder
authored andcommitted
DATAJDBC-206 - Polishing.
Formatting. Original pull request: #61.
1 parent 01a4bbd commit 2089ad7

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

README.adoc

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,12 @@ You can configure the `RowMapper` to use, using either the `@Query(rowMapperClas
131131
[source,java]
132132
----
133133
134-
@Bean
135-
RowMapperMap rowMappers() {
136-
return new ConfigurableRowMapperMap() //
137-
.register(Person.class, new PersonRowMapper()) //
138-
.register(Address.class, new AddressRowMapper());
139-
}
134+
@Bean
135+
RowMapperMap rowMappers() {
136+
return new ConfigurableRowMapperMap() //
137+
.register(Person.class, new PersonRowMapper()) //
138+
.register(Address.class, new AddressRowMapper());
139+
}
140140
141141
----
142142

@@ -189,7 +189,7 @@ You can tweak that by providing a https://github.com/spring-projects/spring-data
189189
| Class | Description
190190

191191
| https://github.com/spring-projects/spring-data-jdbc/blob/master/src/main/java/org/springframework/data/jdbc/mapping/model/DelimiterNamingStrategy.java[`DelimiterNamingStrategy`]
192-
| The delimiter character implementation of NamingStrategy. The default delimiter is `_`(underscore), resulting in snake case. This class does not used by default.
192+
| The delimiter character implementation of NamingStrategy. The default delimiter is `_`(underscore), resulting in snake case.
193193
|===
194194

195195

@@ -323,9 +323,7 @@ You can customize the namespace part of a statement name using https://github.co
323323

324324
=== Advanced query annotation support
325325

326-
* customizable `RowMapper`
327326
* projections
328-
* modifying queries
329327
* SpEL expressions
330328

331329
=== MyBatis per method support

0 commit comments

Comments
 (0)