Skip to content

Commit 147abc9

Browse files
committed
Polish BeanPropertyRowMapper Javadoc
1 parent e12eb94 commit 147abc9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

spring-jdbc/src/main/java/org/springframework/jdbc/core/BeanPropertyRowMapper.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -408,9 +408,9 @@ protected void initBeanWrapper(BeanWrapper bw) {
408408
* Retrieve a JDBC object value for the specified column.
409409
* <p>The default implementation calls
410410
* {@link JdbcUtils#getResultSetValue(java.sql.ResultSet, int, Class)}
411-
* using the type of the specified {@link PropertyDescriptor}
412-
* Subclasses may override this to check specific value types upfront,
413-
* or to post-process values return from {@code getResultSetValue}.
411+
* using the type of the specified {@link PropertyDescriptor}.
412+
* <p>Subclasses may override this to check specific value types upfront,
413+
* or to post-process values returned from {@code getResultSetValue}.
414414
* @param rs is the ResultSet holding the data
415415
* @param index is the column index
416416
* @param pd the bean property that each result object is expected to match
@@ -427,8 +427,8 @@ protected Object getColumnValue(ResultSet rs, int index, PropertyDescriptor pd)
427427
* Retrieve a JDBC object value for the specified column.
428428
* <p>The default implementation calls
429429
* {@link JdbcUtils#getResultSetValue(java.sql.ResultSet, int, Class)}.
430-
* Subclasses may override this to check specific value types upfront,
431-
* or to post-process values return from {@code getResultSetValue}.
430+
* <p>Subclasses may override this to check specific value types upfront,
431+
* or to post-process values returned from {@code getResultSetValue}.
432432
* @param rs is the ResultSet holding the data
433433
* @param index is the column index
434434
* @param paramType the target parameter type

0 commit comments

Comments
 (0)