Browse Source

Replace javadoc references to deprecated query methods

See gh-25272
pull/25428/head
Juergen Hoeller 6 years ago
parent
commit
4f2aaa49a9
  1. 8
      spring-jdbc/src/main/java/org/springframework/jdbc/core/SqlParameterValue.java

8
spring-jdbc/src/main/java/org/springframework/jdbc/core/SqlParameterValue.java

@ -1,5 +1,5 @@ @@ -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; @@ -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…
Cancel
Save