From 62a3f4d8d04fee6a0dcf9065a837f04ab45a0684 Mon Sep 17 00:00:00 2001 From: gaoqr <13665037151@163.com> Date: Thu, 29 Aug 2024 10:33:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=A5=E8=A1=A8=E5=9F=BA=E7=A1=80=E6=A8=A1?= =?UTF-8?q?=E5=9D=97=EF=BC=9A=E6=89=8B=E5=8A=A8=E6=B3=A8=E5=85=A5ureport?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../report/framework/ureport/config/ReportConfig.java | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/cf-module-report/cf-module-report-biz/src/main/java/com/cf/imes/module/report/framework/ureport/config/ReportConfig.java b/cf-module-report/cf-module-report-biz/src/main/java/com/cf/imes/module/report/framework/ureport/config/ReportConfig.java index e5f7b56dc..738e6ea8e 100644 --- a/cf-module-report/cf-module-report-biz/src/main/java/com/cf/imes/module/report/framework/ureport/config/ReportConfig.java +++ b/cf-module-report/cf-module-report-biz/src/main/java/com/cf/imes/module/report/framework/ureport/config/ReportConfig.java @@ -1,5 +1,8 @@ package com.cf.imes.module.report.framework.ureport.config; +import com.bstek.datasource.service.DataSourceService; +import com.bstek.datasource.service.impl.DataSourceServiceImpl; +import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.Import; @@ -10,4 +13,9 @@ import org.springframework.context.annotation.Import; @Configuration @Import(CfReportSpringbeanRegistrar.class) public class ReportConfig { + + @Bean + public DataSourceService getUreportDataSourceService() { + return new DataSourceServiceImpl(); + } } \ No newline at end of file