mirror of https://github.com/jeecgboot/JimuReport
JimuReport积木报表 v1.4.3版本发布,免费的可视化低代码报表
parent
b1924be8b5
commit
6e1b3c7bf6
|
@ -1,10 +1,10 @@
|
|||
# JimuReport - 积木报表
|
||||
|
||||
v1.4.2 | 2021-12-06
|
||||
v1.4.3 | 2022-03-07
|
||||
|
||||
|
||||
[](http://jimureport.com)
|
||||
[](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>
|
||||
<groupId>org.jeecgframework.jimureport</groupId>
|
||||
<artifactId>jimureport-spring-boot-starter</artifactId>
|
||||
<version>1.4.2</version>
|
||||
<version>1.4.3</version>
|
||||
</dependency>
|
||||
```
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
||||
|
|
|
@ -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" +
|
||||
|
|
Loading…
Reference in New Issue