Java tutorial
/* * Copyright (c) 2017 Memorial Sloan-Kettering Cancer Center. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS * FOR A PARTICULAR PURPOSE. The software and documentation provided hereunder * is on an "as is" basis, and Memorial Sloan-Kettering Cancer Center has no * obligations to provide maintenance, support, updates, enhancements or * modifications. In no event shall Memorial Sloan-Kettering Cancer Center be * liable to any party for direct, indirect, special, incidental or * consequential damages, including lost profits, arising out of the use of this * software and its documentation, even if Memorial Sloan-Kettering Cancer * Center has been advised of the possibility of such damage. */ /* * This file is part of cBioPortal CMO-Pipelines. * * cBioPortal is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.cbioportal.database.annotator; import com.querydsl.sql.MySQLTemplates; import com.querydsl.sql.SQLQueryFactory; import java.sql.SQLException; import org.apache.commons.dbcp.BasicDataSource; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.PropertySource; import org.springframework.beans.factory.annotation.Value; /** * * @author heinsz */ @Configuration public class DataSourceConfiguration { @Value("${databaseannotator.user}") private String username; @Value("${databaseannotator.pass}") private String password; @Value("${databaseannotator.driver}") private String driver; @Value("${databaseannotator.connection_string}") private String connection_string; @Bean public SQLQueryFactory databaseAnnotatorQueryFactory() throws SQLException { MySQLTemplates templates = new MySQLTemplates(); com.querydsl.sql.Configuration config = new com.querydsl.sql.Configuration(templates); return new SQLQueryFactory(config, dataSource()); } public BasicDataSource dataSource() throws SQLException { BasicDataSource dataSource = new BasicDataSource(); dataSource.setUsername(username); dataSource.setPassword(password); dataSource.setDriverClassName(driver); dataSource.setUrl(connection_string); return dataSource; } }