Helper class for managing common JDBC tasks.
This class is abstract to allow implementations to take advantage of different logging capabilities/interfaces in different parts of the code.
227228229230231232233234235236237
.append(".initialize()"); getLogger().debug( logBuffer.toString() ); } theJDBCUtil = new JDBCUtil() { protected void delegatedLog(String logString) { AbstractJdbcUsersRepository.this.getLogger().warn("AbstractJdbcUsersRepository: " + logString); } };
293294295296297298299300301302303
if (getLogger().isDebugEnabled()) { getLogger().debug(this.getClass().getName() + ".initialize()"); } theJDBCUtil = new JDBCUtil() { protected void delegatedLog(String logString) { JDBCMailRepository.this.getLogger().warn("JDBCMailRepository: " + logString); } }; // Get the data-source required.
278279280281282283284285286287288
344345346347348349350351352353354
317318319320321322323324325326327
236237238239240241242243244245246
308309310311312313314315316317318
315316317318319320321322323324325