Package org.springframework.jdbc.support
Class CustomSQLExceptionTranslatorRegistrar
- java.lang.Object
- org.springframework.jdbc.support.CustomSQLExceptionTranslatorRegistrar
- All Implemented Interfaces:
InitializingBean
public class CustomSQLExceptionTranslatorRegistrar extends Object implements InitializingBean
Registry for registering customSQLExceptionTranslatorinstances for specific databases.- Since:
- 3.1.1
- Author:
- Thomas Risberg
Constructor Summary
Constructors Constructor Description CustomSQLExceptionTranslatorRegistrar()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidafterPropertiesSet()Invoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.voidsetTranslators(Map<String,SQLExceptionTranslator> translators)Setter for a Map ofSQLExceptionTranslatorreferences where the key must be the database name as defined in thesql-error-codes.xmlfile.
Constructor Detail
CustomSQLExceptionTranslatorRegistrar
public CustomSQLExceptionTranslatorRegistrar()
Method Detail
setTranslators
public void setTranslators(Map<String,SQLExceptionTranslator> translators)
Setter for a Map ofSQLExceptionTranslatorreferences where the key must be the database name as defined in thesql-error-codes.xmlfile.Note that any existing translators will remain unless there is a match in the database name, at which point the new translator will replace the existing one.
afterPropertiesSet
public void afterPropertiesSet()
Description copied from interface:InitializingBeanInvoked by the containingBeanFactoryafter it has set all bean properties and satisfiedBeanFactoryAware,ApplicationContextAwareetc.This method allows the bean instance to perform validation of its overall configuration and final initialization when all bean properties have been set.
- Specified by:
afterPropertiesSetin interfaceInitializingBean