JimuReport积木报表 v1.4.3版本发布,免费的可视化低代码报表

This commit is contained in:
zhangdaiscott
2022-03-05 14:33:02 +08:00
parent b1924be8b5
commit 6e1b3c7bf6
3 changed files with 6 additions and 7 deletions

View File

@@ -12,7 +12,7 @@
<name>jimureport-example</name>
<groupId>org.jeecg</groupId>
<artifactId>jimureport-example</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
<url>http://www.jimureport.com</url>
<description>积木报表集成示例</description>
@@ -49,7 +49,7 @@
<dependency>
<groupId>org.jeecgframework.jimureport</groupId>
<artifactId>jimureport-spring-boot-starter</artifactId>
<version>1.4.2</version>
<version>1.4.3</version>
</dependency>

View File

@@ -1,6 +1,5 @@
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;
@@ -19,7 +18,7 @@ public class JimuReportApplication {
ConfigurableApplicationContext application = SpringApplication.run(JimuReportApplication.class, args);
Environment env = application.getEnvironment();
String port = env.getProperty("server.port");
String path = oConvertUtils.getString(env.getProperty("server.servlet.context-path"));
String path = env.containsProperty("server.servlet.context-path")?env.getProperty("server.servlet.context-path"):"";
System.out.print("\n----------------------------------------------------------\n\t" +
"Application JimuReport Demo is running! Access URL:\n\t" +
"Local: \t\thttp://localhost:" + port + path + "/jmreport/list\n\t" +