主要流程按 spring 集成FineReport v10 https://bbs.fanruan.com/thread-133700-1-1.html
v11不同的地方
1. pom配置不同
<dependency>
<groupId>fine-accumulator</groupId>
<artifactId>fine-accumulator</artifactId>
<scope>system</scope>
<version>11.0</version>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-accumulator-11.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-activator</groupId>
<artifactId>fine-activator</artifactId>
<scope>system</scope>
<version>11.0</version>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-activator-11.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-cbb</groupId>
<artifactId>fine-cbb</artifactId>
<version>11.0</version>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-cbb-11.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-core</groupId>
<artifactId>fine-core</artifactId>
<scope>system</scope>
<version>11.0</version>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-core-11.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-datasource</groupId>
<artifactId>fine-datasource</artifactId>
<scope>system</scope>
<version>11.0</version>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-datasource-11.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-decision</groupId>
<artifactId>fine-decision</artifactId>
<scope>system</scope>
<version>11.0</version>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-decision-11.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-decision-report</groupId>
<artifactId>fine-decision-report</artifactId>
<scope>system</scope>
<version>11.0</version>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-decision-report-11.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-report-engine</groupId>
<artifactId>fine-report-engine</artifactId>
<scope>system</scope>
<version>11.0</version>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-report-engine-11.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-schedule</groupId>
<artifactId>fine-schedule</artifactId>
<scope>system</scope>
<version>11.0</version>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-schedule-11.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-schedule-report</groupId>
<artifactId>fine-schedule-report</artifactId>
<scope>system</scope>
<version>11.0</version>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-schedule-report-11.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-swift-log-adaptor</groupId>
<artifactId>fine-swift-log-adaptor</artifactId>
<scope>system</scope>
<version>11.0</version>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-swift-log-adaptor-11.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-third</groupId>
<artifactId>fine-third</artifactId>
<scope>system</scope>
<version>11.0</version>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-third-11.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-webui</groupId>
<artifactId>fine-webui</artifactId>
<scope>system</scope>
<version>11.0</version>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-webui-11.0.jar</systemPath>
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.78.Final</version>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/netty-all-4.1.78.Final.jar</systemPath>
</dependency>
|