Skip to content

Commit a3b24e4

Browse files
schaudermp911de
authored andcommitted
Fix JavaDoc errors.
Original pull request #1893 See #1006
1 parent 80af671 commit a3b24e4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

spring-data-jdbc/src/main/java/org/springframework/data/jdbc/mybatis/MyBatisDataAccessStrategy.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public static DataAccessStrategy createCombinedAccessStrategy(RelationalMappingC
119119
* Use a {@link SqlSessionTemplate} for {@link SqlSession} or a similar implementation tying the session to the proper
120120
* transaction. Note that the resulting {@link DataAccessStrategy} only handles MyBatis. It does not include the
121121
* functionality of the {@link DefaultDataAccessStrategy} which one normally still wants. Use
122-
* {@link #createCombinedAccessStrategy(RelationalMappingContext, JdbcConverter, NamedParameterJdbcOperations, SqlSession, NamespaceStrategy, Dialect)}
122+
* {@link #createCombinedAccessStrategy(RelationalMappingContext, JdbcConverter, NamedParameterJdbcOperations, SqlSession, NamespaceStrategy, Dialect, QueryMappingConfiguration)}
123123
* to create such a {@link DataAccessStrategy}.
124124
*
125125
* @param sqlSession Must be non {@literal null}.

spring-data-jdbc/src/main/java/org/springframework/data/jdbc/repository/query/Query.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,11 @@
2626
import org.springframework.jdbc.core.RowMapper;
2727

2828
/**
29+
* <p>
2930
* Annotation to provide SQL statements that will get used for executing the method. The SQL statement may contain named
3031
* parameters as supported by {@link org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate}. Those
3132
* parameters will get bound to the arguments of the annotated method.
32-
* <p>
33+
* </p><p>
3334
* You can also specify the way to extract data from {@link java.sql.ResultSet}. There are 4 attribute of this
3435
* annotation you can set to do that:
3536
* <p>

0 commit comments

Comments
 (0)