123456789101112131415161718192021 |
- package cn.com.qmth.examcloud.web.druid;
- import com.alibaba.druid.pool.DruidDataSource;
- public class DruidDataSourceBuilder {
- public static DruidDataSourceBuilder create() {
- return new DruidDataSourceBuilder();
- }
- /**
- * For build multiple DruidDataSource, detail see document.
- *
- * ------- The method is history, and now you can use 'new
- * DruidDataSourceWrapper()' instead.
- */
- public DruidDataSource build() {
- return new DruidDataSourceWrapper();
- }
- }
|