/*
* Copyright 2002-2018 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
*
* http://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.SQLException;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.dao.DataAccessException;
import org.springframework.jdbc.UncategorizedSQLException;
import org.springframework.lang.NonNull;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
Base class for SQLExceptionTranslator
implementations that allow for fallback to some other SQLExceptionTranslator
. Author: Juergen Hoeller Since: 2.5.6
/**
* Base class for {@link SQLExceptionTranslator} implementations that allow for
* fallback to some other {@link SQLExceptionTranslator}.
*
* @author Juergen Hoeller
* @since 2.5.6
*/
public abstract class AbstractFallbackSQLExceptionTranslator implements SQLExceptionTranslator {
Logger available to subclasses. /** Logger available to subclasses. */
protected final Log logger = LogFactory.getLog(getClass());
@Nullable
private SQLExceptionTranslator fallbackTranslator;
Override the default SQL state fallback translator (typically a SQLStateSQLExceptionTranslator
). /**
* Override the default SQL state fallback translator
* (typically a {@link SQLStateSQLExceptionTranslator}).
*/
public void setFallbackTranslator(@Nullable SQLExceptionTranslator fallback) {
this.fallbackTranslator = fallback;
}
Return the fallback exception translator, if any.
/**
* Return the fallback exception translator, if any.
*/
@Nullable
public SQLExceptionTranslator getFallbackTranslator() {
return this.fallbackTranslator;
}
Pre-checks the arguments, calls doTranslate
, and invokes the fallback translator
if necessary. /**
* Pre-checks the arguments, calls {@link #doTranslate}, and invokes the
* {@link #getFallbackTranslator() fallback translator} if necessary.
*/
@Override
@NonNull
public DataAccessException translate(String task, @Nullable String sql, SQLException ex) {
Assert.notNull(ex, "Cannot translate a null SQLException");
DataAccessException dae = doTranslate(task, sql, ex);
if (dae != null) {
// Specific exception match found.
return dae;
}
// Looking for a fallback...
SQLExceptionTranslator fallback = getFallbackTranslator();
if (fallback != null) {
dae = fallback.translate(task, sql, ex);
if (dae != null) {
// Fallback exception match found.
return dae;
}
}
// We couldn't identify it more precisely.
return new UncategorizedSQLException(task, sql, ex);
}
Template method for actually translating the given exception.
The passed-in arguments will have been pre-checked. Furthermore, this method is allowed to return null
to indicate that no exception match has been found and that fallback translation should kick in.
Params: - task – readable text describing the task being attempted
- sql – the SQL query or update that caused the problem (if known)
- ex – the offending
SQLException
Returns: the DataAccessException, wrapping the SQLException
; or null
if no exception match found
/**
* Template method for actually translating the given exception.
* <p>The passed-in arguments will have been pre-checked. Furthermore, this method
* is allowed to return {@code null} to indicate that no exception match has
* been found and that fallback translation should kick in.
* @param task readable text describing the task being attempted
* @param sql the SQL query or update that caused the problem (if known)
* @param ex the offending {@code SQLException}
* @return the DataAccessException, wrapping the {@code SQLException};
* or {@code null} if no exception match found
*/
@Nullable
protected abstract DataAccessException doTranslate(String task, @Nullable String sql, SQLException ex);
Build a message String
for the given SQLException
. To be called by translator subclasses when creating an instance of a generic DataAccessException
class.
Params: - task – readable text describing the task being attempted
- sql – the SQL statement that caused the problem
- ex – the offending
SQLException
Returns: the message String
to use
/**
* Build a message {@code String} for the given {@link java.sql.SQLException}.
* <p>To be called by translator subclasses when creating an instance of a generic
* {@link org.springframework.dao.DataAccessException} class.
* @param task readable text describing the task being attempted
* @param sql the SQL statement that caused the problem
* @param ex the offending {@code SQLException}
* @return the message {@code String} to use
*/
protected String buildMessage(String task, @Nullable String sql, SQLException ex) {
return task + "; " + (sql != null ? ("SQL [" + sql + "]; ") : "") + ex.getMessage();
}
}