qiaozhanwei
5 years ago
committed by
lgcareer
5 changed files with 73 additions and 78 deletions
@ -1,63 +0,0 @@
|
||||
///*
|
||||
// * Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
// * contributor license agreements. See the NOTICE file distributed with
|
||||
// * this work for additional information regarding copyright ownership.
|
||||
// * The ASF licenses this file to You under the Apache License, Version 2.0
|
||||
// * (the "License"); you may not use this file except in compliance with
|
||||
// * the License. You may obtain a copy of the License at
|
||||
// *
|
||||
// * http://www.apache.org/licenses/LICENSE-2.0
|
||||
// *
|
||||
// * Unless required by applicable law or agreed to in writing, software
|
||||
// * distributed under the License is distributed on an "AS IS" BASIS,
|
||||
// * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
// * See the License for the specific language governing permissions and
|
||||
// * limitations under the License.
|
||||
// */
|
||||
//package org.apache.dolphinscheduler.dao.datasource;
|
||||
//
|
||||
//import com.alibaba.druid.pool.DruidDataSource;
|
||||
//import org.apache.ibatis.session.SqlSessionFactory;
|
||||
//import org.mybatis.spring.SqlSessionFactoryBean;
|
||||
//import org.mybatis.spring.annotation.MapperScan;
|
||||
//import org.springframework.context.annotation.Bean;
|
||||
//import org.springframework.context.annotation.Configuration;
|
||||
//import org.springframework.context.annotation.Primary;
|
||||
//import org.springframework.context.annotation.PropertySource;
|
||||
//import org.springframework.jdbc.datasource.DataSourceTransactionManager;
|
||||
//import org.springframework.transaction.PlatformTransactionManager;
|
||||
//
|
||||
//import java.sql.SQLException;
|
||||
//
|
||||
///**
|
||||
// * data base configuration
|
||||
// */
|
||||
//@Configuration
|
||||
//@PropertySource({"classpath:application.yml"})
|
||||
//@MapperScan(basePackages = "org.apache.dolphinscheduler.dao.mapper", sqlSessionFactoryRef = "SqlSessionFactory")
|
||||
//public class DatabaseConfiguration {
|
||||
//
|
||||
// /**
|
||||
// * register data source
|
||||
// */
|
||||
// @Primary
|
||||
// @Bean(name = "DataSource", initMethod = "init", destroyMethod = "close")
|
||||
// public DruidDataSource dataSource() {
|
||||
// return ConnectionFactory.getDataSource();
|
||||
// }
|
||||
//
|
||||
// @Primary
|
||||
// @Bean(name = "SqlSessionFactory")
|
||||
// public SqlSessionFactory sqlSessionFactory() throws Exception {
|
||||
// SqlSessionFactoryBean sqlSessionFactoryBean = new SqlSessionFactoryBean();
|
||||
// sqlSessionFactoryBean.setDataSource(dataSource());
|
||||
//
|
||||
// return sqlSessionFactoryBean.getObject();
|
||||
// }
|
||||
//
|
||||
// @Primary
|
||||
// @Bean(name = "TransactionManager")
|
||||
// public PlatformTransactionManager transactionManager() throws SQLException {
|
||||
// return new DataSourceTransactionManager(dataSource());
|
||||
// }
|
||||
//}
|
@ -0,0 +1,33 @@
|
||||
/* |
||||
* Licensed to the Apache Software Foundation (ASF) under one or more |
||||
* contributor license agreements. See the NOTICE file distributed with |
||||
* this work for additional information regarding copyright ownership. |
||||
* The ASF licenses this file to You under the Apache License, Version 2.0 |
||||
* (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
package org.apache.dolphinscheduler.dao.mapper; |
||||
|
||||
import org.apache.dolphinscheduler.dao.datasource.ConnectionFactory; |
||||
import org.junit.Assert; |
||||
import org.junit.Test; |
||||
|
||||
import java.sql.Connection; |
||||
|
||||
|
||||
public class ConnectionFactoryTest { |
||||
|
||||
@Test |
||||
public void testConnection()throws Exception{ |
||||
Connection connection = ConnectionFactory.getDataSource().getPooledConnection().getConnection(); |
||||
Assert.assertEquals(connection != null , true); |
||||
} |
||||
} |
Loading…
Reference in new issue