Replace javadoc references to deprecated query methods
See gh-25272
This commit is contained in:
parent
6317bc2262
commit
4f2aaa49a9
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright 2002-2018 the original author or authors.
|
||||
* Copyright 2002-2020 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -31,9 +31,9 @@ import org.springframework.lang.Nullable;
|
|||
* @author Juergen Hoeller
|
||||
* @since 2.0.5
|
||||
* @see java.sql.Types
|
||||
* @see JdbcTemplate#query(String, Object[], ResultSetExtractor)
|
||||
* @see JdbcTemplate#query(String, Object[], RowCallbackHandler)
|
||||
* @see JdbcTemplate#query(String, Object[], RowMapper)
|
||||
* @see JdbcTemplate#query(String, ResultSetExtractor, Object[])
|
||||
* @see JdbcTemplate#query(String, RowCallbackHandler, Object[])
|
||||
* @see JdbcTemplate#query(String, RowMapper, Object[])
|
||||
* @see JdbcTemplate#update(String, Object[])
|
||||
*/
|
||||
public class SqlParameterValue extends SqlParameter {
|
||||
|
|
Loading…
Reference in New Issue