-
When you use Spring and Ibatis and SQLTemplates, you could have code in your project which looks somewhat like this: Connection connection = DataSourceUtils.getConnection(getDataSource()); ...<do connection stuff here>... DataSourceUtils.releaseConnection(connection, getDataSource()); Sonar will report that you …
Read More