Add common SqlValue implementation for JDBC Array creation

Closes gh-1850
This commit is contained in:
Juergen Hoeller 2023-07-13 00:28:32 +02:00
parent 357d5b4e6e
commit 3fed2ec3a1
2 changed files with 141 additions and 0 deletions

View File

@ -0,0 +1,79 @@
/*
* Copyright 2002-2023 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.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.jdbc.support;
import java.sql.Array;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import org.springframework.dao.DataAccessResourceFailureException;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
/**
* Common {@link SqlValue} implementation for JDBC {@link Array} creation
* based on the JDBC 4 {@link java.sql.Connection#createArrayOf} method.
*
* <p>Also serves as a template for custom {@link SqlValue} implementations.
*
* @author Juergen Hoeller
* @author Philippe Marschall
* @since 6.1
*/
public class SqlArrayValue implements SqlValue {
private final String typeName;
private final Object[] elements;
@Nullable
private Array array;
/**
* Create a new {@code SqlArrayValue} for the given type name and elements.
* @param typeName the SQL name of the type the elements of the array map to
* @param elements the elements to populate the {@code Array} object with
* @see java.sql.Connection#createArrayOf
*/
public SqlArrayValue(String typeName, Object[] elements) {
Assert.notNull(typeName, "Type name must not be null");
Assert.notNull(elements, "Elements array must not be null");
this.typeName = typeName;
this.elements = elements;
}
@Override
public void setValue(PreparedStatement ps, int paramIndex) throws SQLException {
this.array = ps.getConnection().createArrayOf(this.typeName, this.elements);
ps.setArray(paramIndex, this.array);
}
@Override
public void cleanup() {
if (this.array != null) {
try {
this.array.free();
}
catch (SQLException ex) {
throw new DataAccessResourceFailureException("Could not free Array object", ex);
}
}
}
}

View File

@ -0,0 +1,62 @@
/*
* Copyright 2002-2023 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.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.jdbc.support;
import java.sql.Array;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import org.junit.jupiter.api.Test;
import static org.mockito.BDDMockito.given;
import static org.mockito.BDDMockito.mock;
import static org.mockito.BDDMockito.verify;
/**
* Tests for {@link SqlArrayValue}.
*
* @author Philippe Marschall
* @since 6.1
*/
public class SqlArrayValueTests {
private final Connection con = mock();
private final PreparedStatement ps = mock();
private final Array arr = mock();
private final Object[] elements = new Object[] {1, 2, 3};
private final SqlArrayValue sqlArrayValue = new SqlArrayValue("smallint", elements);
@Test
public void setValue() throws SQLException {
given(this.ps.getConnection()).willReturn(this.con);
given(this.con.createArrayOf("smallint", elements)).willReturn(this.arr);
int paramIndex = 42;
this.sqlArrayValue.setValue(this.ps, paramIndex);
verify(ps).setArray(paramIndex, arr);
this.sqlArrayValue.cleanup();
verify(this.arr).free();
}
}