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

dependabot/maven/jimureport-example/org.xerial-sqlite-jdbc-3.41.2.2
zhangdaiscott 2022-03-05 14:33:02 +08:00
parent b1924be8b5
commit 6e1b3c7bf6
3 changed files with 6 additions and 7 deletions

View File

@ -1,10 +1,10 @@
# JimuReport - 积木报表
v1.4.2 | 2021-12-06
v1.4.3 | 2022-03-07
[![](https://img.shields.io/badge/Author-北京国炬软件-orange.svg)](http://jimureport.com)
[![](https://img.shields.io/badge/version-1.4.2-brightgreen.svg)](https://github.com/zhangdaiscott/JimuReport)
[![](https://img.shields.io/badge/version-1.4.3-brightgreen.svg)](https://github.com/zhangdaiscott/JimuReport)
[![GitHub stars](https://img.shields.io/github/stars/zhangdaiscott/JimuReport.svg?style=social&label=Stars)](https://github.com/zhangdaiscott/JimuReport)
[![GitHub forks](https://img.shields.io/github/forks/zhangdaiscott/JimuReport.svg?style=social&label=Fork)](https://github.com/zhangdaiscott/JimuReport)
@ -44,7 +44,7 @@ v1.4.2 | 2021-12-06
<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

@ -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" +