iBATIS用法中的SqlMapTemplate类主要查找和String statementName相对应的MappedStatement对象,并调用MappedStatement的相应的方法,但SqlMapTemplate的查询方法,都有以下的几个操作。
1、必须先判断XML文件中是否定义String statementName;
2、如果如果存在则生成相应的MappedStatement对象;
3、并且获得该线程所对应的Connection对象;
4、然后调用MappedStatement对象相应的操作数据库的方法;
5、释放Connection对象等。
在以上iBATIS用法其中只有第4步每个方法会有所变化,其他的方法都一样。SqlMapTemplate不用的方法第4步调用MappedStatement的不同方法,但参数都一样。
抽象类SqlMapCallback的代码如下:
- public interface SqlMapCallback {
- Object doInMappedStatement(MappedStatement stmt, Connection con) throws SQLException;
- }
实现类SqlMapTemplate的调用抽象的方法代码如下:
- public Object execute(String statementName, SqlMapCallback action) throws DataAccessException {
- Assert.notNull(this.sqlMap, "No SqlMap specified");
- MappedStatement stmt = this.sqlMap.getMappedStatement(statementName);
- Connection con = DataSourceUtils.getConnection(getDataSource());
- try {
- return action.doInMappedStatement(stmt, con);
- }
- catch (SQLException ex) {
- throw getExceptionTranslator().translate("SqlMap operation", null, ex);
- }
- finally {
- DataSourceUtils.releaseConnection(con, getDataSource());
- }
- }
SqlMapTemplate方法中调用内部抽象方法,并实现内部类抽象方法的方法体代码如下。
- public Object executeQueryForObject(String statementName, final Object parameterObject)
- throws DataAccessException {
- return execute(statementName, new SqlMapCallback() {
- public Object doInMappedStatement(MappedStatement stmt, Connection con) throws SQLException {
- return stmt.executeQueryForObject(con, parameterObject);
- }
- });
- }
iBATIS用法之SqlMapTemplate内部类的介绍就向你讲解到这里,希望对你有所帮助。
【编辑推荐】