mirror of
https://github.com/jeecgboot/JimuReport.git
synced 2025-10-14 14:30:23 +00:00
JimuReport积木报表 v1.4.3版本发布,免费的可视化低代码报表
This commit is contained in:
@@ -1,10 +1,10 @@
|
|||||||
# JimuReport - 积木报表
|
# JimuReport - 积木报表
|
||||||
|
|
||||||
v1.4.2 | 2021-12-06
|
v1.4.3 | 2022-03-07
|
||||||
|
|
||||||
|
|
||||||
[](http://jimureport.com)
|
[](http://jimureport.com)
|
||||||
[](https://github.com/zhangdaiscott/JimuReport)
|
[](https://github.com/zhangdaiscott/JimuReport)
|
||||||
[](https://github.com/zhangdaiscott/JimuReport)
|
[](https://github.com/zhangdaiscott/JimuReport)
|
||||||
[](https://github.com/zhangdaiscott/JimuReport)
|
[](https://github.com/zhangdaiscott/JimuReport)
|
||||||
|
|
||||||
@@ -44,7 +44,7 @@ v1.4.2 | 2021-12-06
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jeecgframework.jimureport</groupId>
|
<groupId>org.jeecgframework.jimureport</groupId>
|
||||||
<artifactId>jimureport-spring-boot-starter</artifactId>
|
<artifactId>jimureport-spring-boot-starter</artifactId>
|
||||||
<version>1.4.2</version>
|
<version>1.4.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@@ -12,7 +12,7 @@
|
|||||||
<name>jimureport-example</name>
|
<name>jimureport-example</name>
|
||||||
<groupId>org.jeecg</groupId>
|
<groupId>org.jeecg</groupId>
|
||||||
<artifactId>jimureport-example</artifactId>
|
<artifactId>jimureport-example</artifactId>
|
||||||
<version>1.4.2</version>
|
<version>1.4.3</version>
|
||||||
|
|
||||||
<url>http://www.jimureport.com</url>
|
<url>http://www.jimureport.com</url>
|
||||||
<description>积木报表集成示例</description>
|
<description>积木报表集成示例</description>
|
||||||
@@ -49,7 +49,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jeecgframework.jimureport</groupId>
|
<groupId>org.jeecgframework.jimureport</groupId>
|
||||||
<artifactId>jimureport-spring-boot-starter</artifactId>
|
<artifactId>jimureport-spring-boot-starter</artifactId>
|
||||||
<version>1.4.2</version>
|
<version>1.4.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
|
||||||
|
@@ -1,6 +1,5 @@
|
|||||||
package org.jeecg.modules;
|
package org.jeecg.modules;
|
||||||
|
|
||||||
import org.jeecg.modules.jmreport.common.util.oConvertUtils;
|
|
||||||
import org.springframework.boot.SpringApplication;
|
import org.springframework.boot.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
@@ -19,7 +18,7 @@ public class JimuReportApplication {
|
|||||||
ConfigurableApplicationContext application = SpringApplication.run(JimuReportApplication.class, args);
|
ConfigurableApplicationContext application = SpringApplication.run(JimuReportApplication.class, args);
|
||||||
Environment env = application.getEnvironment();
|
Environment env = application.getEnvironment();
|
||||||
String port = env.getProperty("server.port");
|
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" +
|
System.out.print("\n----------------------------------------------------------\n\t" +
|
||||||
"Application JimuReport Demo is running! Access URL:\n\t" +
|
"Application JimuReport Demo is running! Access URL:\n\t" +
|
||||||
"Local: \t\thttp://localhost:" + port + path + "/jmreport/list\n\t" +
|
"Local: \t\thttp://localhost:" + port + path + "/jmreport/list\n\t" +
|
||||||
|
Reference in New Issue
Block a user