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

com.tlgen.orm.utils.ConnectUtils Maven / Gradle / Ivy

The newest version!
package com.tlgen.orm.utils;

import org.springframework.jdbc.core.JdbcTemplate;

import javax.sql.DataSource;

/**
 * 数据库连接实例工具类
 */
public class ConnectUtils {

    public static JdbcTemplate getJdbcTemplate() {
        DataSource dataSource = SpringUtils.getBean("dataSource");
        return new JdbcTemplate(dataSource);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy