|
1 | 1 | R2DBC contains a wide range of features:
|
2 | 2 |
|
3 |
| -* Spring configuration support with Java-based `@Configuration` classes for an R2DBC driver instance. |
| 3 | +* Spring configuration support with Java-based `@Configuration` classes for an R2DBC driver instance. |
4 | 4 | * `R2dbcEntityTemplate` as central class for entity-bound operations that increases productivity when performing common R2DBC operations with integrated object mapping between rows and POJOs.
|
5 | 5 | * Feature-rich object mapping integrated with Spring's Conversion Service.
|
6 | 6 | * Annotation-based mapping metadata that is extensible to support other metadata formats.
|
@@ -79,12 +79,12 @@ To do so:
|
79 | 79 |
|
80 | 80 | The repository is also https://repo.spring.io/milestone/org/springframework/data/[browseable here].
|
81 | 81 |
|
82 |
| -You may also want to set the logging level to `DEBUG` to see some additional information. To do so, edit the `application.properties` file to have the following content: |
| 82 | +You may also want to set the logging level to `DEBUG` to see some additional information.To do so, edit the `application.properties` file to have the following content: |
83 | 83 |
|
84 | 84 | ====
|
85 | 85 | [source]
|
86 | 86 | ----
|
87 |
| -logging.level.org.springframework.data.r2dbc=DEBUG |
| 87 | +logging.level.org.springframework.r2dbc=DEBUG |
88 | 88 | ----
|
89 | 89 | ====
|
90 | 90 |
|
@@ -138,7 +138,7 @@ Even in this simple example, there are few things to notice:
|
138 | 138 |
|
139 | 139 | * You can create an instance of the central helper class in Spring Data R2DBC (`R2dbcEntityTemplate`) by using a standard `io.r2dbc.spi.ConnectionFactory` object.
|
140 | 140 | * The mapper works against standard POJO objects without the need for any additional metadata (though you can, optionally, provide that information -- see <<mapping,here>>.).
|
141 |
| -* Mapping conventions can use field access. Notice that the `Person` class has only getters. |
| 141 | +* Mapping conventions can use field access.Notice that the `Person` class has only getters. |
142 | 142 | * If the constructor argument names match the column names of the stored row, they are used to instantiate the object.
|
143 | 143 |
|
144 | 144 | [[r2dbc.examples-repo]]
|
|
0 commit comments