Skip to content

Commit

Permalink
JimuReport积木报表 v1.4.3版本发布,免费的可视化低代码报表
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangdaiscott committed Mar 5, 2022
1 parent 9cdd3fe commit eaad56d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down Expand Up @@ -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>
```

Expand Down
4 changes: 2 additions & 2 deletions jimureport-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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>


Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand All @@ -19,7 +18,7 @@ public static void main(String[] args) {
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" +
Expand Down

0 comments on commit eaad56d

Please sign in to comment.