All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dao.support.database.impl.LowerCaseJdbcTemplate Maven / Gradle / Ivy

The newest version!
package com.dao.support.database.impl;

import org.springframework.jdbc.core.ColumnMapRowMapper;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.core.RowMapper;



/**
 * 覆写jdbctemlate ,使用LowerCaseColumnMapRowMapper
 * @author kingapex
 * 2010-6-13上午11:05:32
 */
public class LowerCaseJdbcTemplate extends JdbcTemplate {
	@Override
	protected RowMapper getColumnMapRowMapper() {
		return new MySqlColumnMapRowMapper();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy