Add missing "since" in @Deprecated
See gh-34942 Signed-off-by: Yanming Zhou <zhouyanming@gmail.com>
This commit is contained in:
committed by
rstoyanchev
parent
b7dfd68d89
commit
f9fa7cc93b
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2024 the original author or authors.
|
||||
* Copyright 2002-2025 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.
|
||||
@@ -369,7 +369,7 @@ public interface JdbcOperations {
|
||||
* @throws DataAccessException if the query fails
|
||||
* @deprecated as of 5.3, in favor of {@link #query(String, ResultSetExtractor, Object...)}
|
||||
*/
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.3")
|
||||
<T> @Nullable T query(String sql, @Nullable Object @Nullable [] args, ResultSetExtractor<T> rse) throws DataAccessException;
|
||||
|
||||
/**
|
||||
@@ -440,7 +440,7 @@ public interface JdbcOperations {
|
||||
* @throws DataAccessException if the query fails
|
||||
* @deprecated as of 5.3, in favor of {@link #query(String, RowCallbackHandler, Object...)}
|
||||
*/
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.3")
|
||||
void query(String sql, @Nullable Object @Nullable [] args, RowCallbackHandler rch) throws DataAccessException;
|
||||
|
||||
/**
|
||||
@@ -516,7 +516,7 @@ public interface JdbcOperations {
|
||||
* @throws DataAccessException if the query fails
|
||||
* @deprecated as of 5.3, in favor of {@link #query(String, RowMapper, Object...)}
|
||||
*/
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.3")
|
||||
<T> List<T> query(String sql, @Nullable Object @Nullable [] args, RowMapper<T> rowMapper) throws DataAccessException;
|
||||
|
||||
/**
|
||||
@@ -623,7 +623,7 @@ public interface JdbcOperations {
|
||||
* @throws DataAccessException if the query fails
|
||||
* @deprecated as of 5.3, in favor of {@link #queryForObject(String, RowMapper, Object...)}
|
||||
*/
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.3")
|
||||
<T> @Nullable T queryForObject(String sql, @Nullable Object @Nullable [] args, RowMapper<T> rowMapper) throws DataAccessException;
|
||||
|
||||
/**
|
||||
@@ -687,7 +687,7 @@ public interface JdbcOperations {
|
||||
* @see #queryForObject(String, Class)
|
||||
* @deprecated as of 5.3, in favor of {@link #queryForObject(String, Class, Object...)}
|
||||
*/
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.3")
|
||||
<T> @Nullable T queryForObject(String sql, @Nullable Object @Nullable [] args, Class<T> requiredType) throws DataAccessException;
|
||||
|
||||
/**
|
||||
@@ -791,7 +791,7 @@ public interface JdbcOperations {
|
||||
* @see SingleColumnRowMapper
|
||||
* @deprecated as of 5.3, in favor of {@link #queryForList(String, Class, Object...)}
|
||||
*/
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.3")
|
||||
<T> List<T> queryForList(String sql, @Nullable Object @Nullable [] args, Class<T> elementType) throws DataAccessException;
|
||||
|
||||
/**
|
||||
|
||||
@@ -740,7 +740,7 @@ public class JdbcTemplate extends JdbcAccessor implements JdbcOperations {
|
||||
return query(sql, newArgTypePreparedStatementSetter(args, argTypes), rse);
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.3")
|
||||
@Override
|
||||
public <T> @Nullable T query(String sql, @Nullable Object @Nullable [] args, ResultSetExtractor<T> rse) throws DataAccessException {
|
||||
return query(sql, newArgPreparedStatementSetter(args), rse);
|
||||
@@ -766,7 +766,7 @@ public class JdbcTemplate extends JdbcAccessor implements JdbcOperations {
|
||||
query(sql, newArgTypePreparedStatementSetter(args, argTypes), rch);
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.3")
|
||||
@Override
|
||||
public void query(String sql, @Nullable Object @Nullable [] args, RowCallbackHandler rch) throws DataAccessException {
|
||||
query(sql, newArgPreparedStatementSetter(args), rch);
|
||||
@@ -792,7 +792,7 @@ public class JdbcTemplate extends JdbcAccessor implements JdbcOperations {
|
||||
return result(query(sql, args, argTypes, new RowMapperResultSetExtractor<>(rowMapper)));
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.3")
|
||||
@Override
|
||||
public <T> List<T> query(String sql, @Nullable Object @Nullable [] args, RowMapper<T> rowMapper) throws DataAccessException {
|
||||
return result(query(sql, newArgPreparedStatementSetter(args), new RowMapperResultSetExtractor<>(rowMapper)));
|
||||
@@ -859,7 +859,7 @@ public class JdbcTemplate extends JdbcAccessor implements JdbcOperations {
|
||||
return DataAccessUtils.nullableSingleResult(results);
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.3")
|
||||
@Override
|
||||
public <T> @Nullable T queryForObject(String sql,@Nullable Object @Nullable [] args, RowMapper<T> rowMapper) throws DataAccessException {
|
||||
List<T> results = query(sql, newArgPreparedStatementSetter(args), new RowMapperResultSetExtractor<>(rowMapper, 1));
|
||||
@@ -879,7 +879,7 @@ public class JdbcTemplate extends JdbcAccessor implements JdbcOperations {
|
||||
return queryForObject(sql, args, argTypes, getSingleColumnRowMapper(requiredType));
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.3")
|
||||
@Override
|
||||
public <T> @Nullable T queryForObject(String sql, @Nullable Object @Nullable [] args, Class<T> requiredType) throws DataAccessException {
|
||||
return queryForObject(sql, getSingleColumnRowMapper(requiredType), args);
|
||||
@@ -905,7 +905,7 @@ public class JdbcTemplate extends JdbcAccessor implements JdbcOperations {
|
||||
return query(sql, args, argTypes, getSingleColumnRowMapper(elementType));
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.3")
|
||||
@Override
|
||||
public <T> List<T> queryForList(String sql, @Nullable Object @Nullable [] args, Class<T> elementType) throws DataAccessException {
|
||||
return query(sql, newArgPreparedStatementSetter(args), getSingleColumnRowMapper(elementType));
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2020 the original author or authors.
|
||||
* Copyright 2002-2025 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.
|
||||
@@ -45,7 +45,7 @@ import org.springframework.util.Assert;
|
||||
* @deprecated as of 5.3, in favor of Spring's common bean definition formats
|
||||
* and/or custom reader implementations
|
||||
*/
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.3")
|
||||
public class JdbcBeanDefinitionReader {
|
||||
|
||||
private final org.springframework.beans.factory.support.PropertiesBeanDefinitionReader propReader;
|
||||
|
||||
@@ -266,7 +266,7 @@ public abstract class DataSourceUtils {
|
||||
* @deprecated as of 5.1.11, in favor of
|
||||
* {@link #resetConnectionAfterTransaction(Connection, Integer, boolean)}
|
||||
*/
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.1.11")
|
||||
public static void resetConnectionAfterTransaction(Connection con, @Nullable Integer previousIsolationLevel) {
|
||||
Assert.notNull(con, "No Connection specified");
|
||||
try {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2020 the original author or authors.
|
||||
* Copyright 2002-2025 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.
|
||||
@@ -77,7 +77,7 @@ public class DatabaseStartupValidator implements InitializingBean {
|
||||
* Set the SQL query string to use for validation.
|
||||
* @deprecated as of 5.3, in favor of the JDBC 4.0 connection validation
|
||||
*/
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.3")
|
||||
public void setValidationQuery(String validationQuery) {
|
||||
this.validationQuery = validationQuery;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2024 the original author or authors.
|
||||
* Copyright 2002-2025 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.
|
||||
@@ -379,7 +379,7 @@ public abstract class JdbcUtils {
|
||||
* {@link #extractDatabaseMetaData(DataSource, DatabaseMetaDataCallback)}
|
||||
* with a lambda expression or method reference and a generically typed result
|
||||
*/
|
||||
@Deprecated
|
||||
@Deprecated(since = "5.2.9")
|
||||
@SuppressWarnings("unchecked")
|
||||
public static <T> T extractDatabaseMetaData(DataSource dataSource, final String metaDataMethodName)
|
||||
throws MetaDataAccessException {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2024 the original author or authors.
|
||||
* Copyright 2002-2025 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,7 +31,7 @@ import org.jspecify.annotations.Nullable;
|
||||
* @author Juergen Hoeller
|
||||
* @since 2.5.3
|
||||
*/
|
||||
@Deprecated
|
||||
@Deprecated(since = "6.2")
|
||||
class PassThroughBlob implements Blob {
|
||||
|
||||
private byte @Nullable [] content;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright 2002-2024 the original author or authors.
|
||||
* Copyright 2002-2025 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.
|
||||
@@ -39,7 +39,7 @@ import org.springframework.util.FileCopyUtils;
|
||||
* @author Juergen Hoeller
|
||||
* @since 2.5.3
|
||||
*/
|
||||
@Deprecated
|
||||
@Deprecated(since = "6.2")
|
||||
class PassThroughClob implements Clob {
|
||||
|
||||
private @Nullable String content;
|
||||
|
||||
Reference in New Issue
Block a user