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

com.aol.micro.server.spring.datasource.jdbc.SQL Maven / Gradle / Ivy

There is a newer version: 0.91.11
Show newest version
package com.aol.micro.server.spring.datasource.jdbc;

import org.springframework.beans.factory.annotation.Qualifier;
import javax.sql.DataSource;

import lombok.Getter;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.stereotype.Component;

@Component
@Getter
public class SQL {

	private final JdbcTemplate jdbc;

	@Autowired
	public SQL(@Qualifier("mainDataSource") DataSource dataSource) {
		jdbc = new JdbcTemplate(dataSource);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy