From f32b4bf108cc37662fd495e620c9eba2491764a4 Mon Sep 17 00:00:00 2001 From: zhangdaiscott Date: Sat, 4 Dec 2021 00:13:03 +0800 Subject: [PATCH] =?UTF-8?q?v1.4.2=E7=89=88=E6=9C=AC=E5=8F=91=E5=B8=83?= =?UTF-8?q?=EF=BC=8C=E5=85=8D=E8=B4=B9=E7=9A=84=E5=8F=AF=E8=A7=86=E5=8C=96?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E4=BA=A7=E5=93=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jimureport-example/pom.xml | 4 ++-- .../main/java/org/jeecg/modules/JimuReportApplication.java | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/jimureport-example/pom.xml b/jimureport-example/pom.xml index 8cb6f15..93534bd 100644 --- a/jimureport-example/pom.xml +++ b/jimureport-example/pom.xml @@ -40,7 +40,7 @@ 1.8 8.0.3 - 8.0.20 + 8.0.27 @@ -49,7 +49,7 @@ org.jeecgframework.jimureport jimureport-spring-boot-starter - 1.4.0 + 1.4.2 diff --git a/jimureport-example/src/main/java/org/jeecg/modules/JimuReportApplication.java b/jimureport-example/src/main/java/org/jeecg/modules/JimuReportApplication.java index c26871e..fed1e07 100644 --- a/jimureport-example/src/main/java/org/jeecg/modules/JimuReportApplication.java +++ b/jimureport-example/src/main/java/org/jeecg/modules/JimuReportApplication.java @@ -2,7 +2,9 @@ package org.jeecg.modules; import org.jeecg.modules.jmreport.common.util.oConvertUtils; import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.EnableAutoConfiguration; import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.core.env.Environment; @@ -10,6 +12,7 @@ import org.springframework.core.env.Environment; * 积木报表独立服务启动类 */ @SpringBootApplication(scanBasePackages = {"org.jeecg.modules.jmreport"}) +@EnableAutoConfiguration(exclude={MongoAutoConfiguration.class}) public class JimuReportApplication { public static void main(String[] args) {