在jdbcTemplate.update(String sql,Object[] args,int[] argTypes



我正在学习Spring Boot和jdbcTemplate的组合,以进行一些基本的crud操作,并试图更好地了解我应该选择哪种更新方法。

我知道以下两种类方法(改编自这篇文章)会将相同的记录写入数据库。

示例 1:

public class InsertDemo {
private static final String sql =
        "INSERT INTO records (title, " +
        "    release_date, " +
        "    artist_id, " +
        "    label_id, " +
        "    created) " +
        "VALUES (?, ?, ?, ?, ?)";
private DataSource dataSource;
public InsertDemo(DataSource dataSource) {
    this.dataSource = dataSource;
}
public void saveRecord(String title, Date releaseDate,
                       Integer artistId, Integer labelId) {
    JdbcTemplate template = new JdbcTemplate(this.dataSource);
    Object[] params = new Object[] {
            title, releaseDate, artistId, labelId, new Date()
    };
    int[] types = new int[] {
            Types.VARCHAR,
            Types.DATE,
            Types.INTEGER,
            Types.INTEGER,
            Types.DATE
    };
    int row = template.update(sql, params, types);
    System.out.println(row + " row inserted.");
}

示例 2:

public class InsertDemo {
private static final String sql =
        "INSERT INTO records (title, " +
        "    release_date, " +
        "    artist_id, " +
        "    label_id, " +
        "    created) " +
        "VALUES (?, ?, ?, ?, ?)";
private DataSource dataSource;
public InsertDemo(DataSource dataSource) {
    this.dataSource = dataSource;
}
public void saveRecord(String title, Date releaseDate,
                       Integer artistId, Integer labelId) {
    JdbcTemplate template = new JdbcTemplate(this.dataSource);
    Object[] params = new Object[] {
            title, releaseDate, artistId, labelId, new Date()
    };
    int row = template.update(sql, params);
    System.out.println(row + " row inserted.");
}

但我不清楚为什么我会/应该使用第一个指定参数类型的参数类型。 我已经阅读了javadoc,但我仍然不确定为什么我需要指定类型。 我错过了什么?

设置参数类型为底层 SQL 语句提供了正确性和优化(轻微)。(JdbcTemplate在内部生成一个PreparedStatement,并使用提供/派生的类型为其设置值)。

在您的示例中,如果您不指定数组Types则它们将被设置为 SqlTypeValue.TYPE_UNKOWN最终被猜测或解析为;

if (sqlType == SqlTypeValue.TYPE_UNKNOWN || sqlType == Types.OTHER) {
            if (isStringValue(inValue.getClass())) {
                ps.setString(paramIndex, inValue.toString());
            }
            else if (isDateValue(inValue.getClass())) {
                ps.setTimestamp(paramIndex, new java.sql.Timestamp(((java.util.Date) inValue).getTime()));
            }
            else if (inValue instanceof Calendar) {
                Calendar cal = (Calendar) inValue;
                ps.setTimestamp(paramIndex, new java.sql.Timestamp(cal.getTime().getTime()), cal);
            }
            else {
                // Fall back to generic setObject call without SQL type specified.
                ps.setObject(paramIndex, inValue);
            }
        }

看看org.springframework.jdbc.core.StatementCreatorUtils#setValue

因此,设置 arg 类型是一种很好的做法。

没有Type参数:

包含绑定参数的 sql SQL 参数 要绑定到查询的参数 (留给 PreparedStatement 来猜测相应的 SQL 类型);可能还包含 SqlParameterValue 对象,这些对象指示不 只有参数值,还有 SQL 类型和可选的小数位数

使用Type参数:

包含绑定参数的 sql SQL 参数 要绑定到查询的参数 argTypes 参数的 SQL 类型(来自 java.sql.Types) 的常量)

最新更新