3.1 进行 IDEA 配置3.1.1 下载 Spring Assistant 插件
1)点击 File>Settings,选择 Plugins 在搜索框中找到 Spring Assistant ,点击 install ,下载完成后重启 IDEA ,如下图所示:
3.1.2 设置 JDK 路径点击 File>Project Sturcture,选择 Projects ,设置 JDK 安装路径,如下图所示:
3.1.2 配置 maven点击File>Settings,选择 Build,Execution,Deployment>maven,设置 maven 的安装位置,确认 「User settings File」 和 「Local repository 」在本地对应路径下有对应文件,点击 OK,如下图所示:
注:若没有 repository 文件,则直接创建即可。
3.2 新建 SpringBoot 项目1)选择 File>New>Project,选择 Spring Initializr,默认设置,点击「Next」,如下图所示:
2)根据实际情况设定,Packaging 选择「war」,点击「Next」,如下图所示:
3)勾选Web>Spring Web,如下图所示:
4)指定项目名称和路径,点击完成,新建项目完成,如下图所示:
3.3 复制文件1)在 src/main下新建名为 webapp 的文件夹,右击 main ,选择 New>Directory,如下图所示:
2)输入 webapp 后回车即可,如下图所示:
3)右键webapp>Show in Explorer,将安装好的报表工程 %FineBI%webroot下的文件全部复制进去,如下图所示:
4)查看 webapp/WEB-INF/lib,将开发环境%JDK%/lib下的「tools.jar」放入,如下图所示:
5)打开项目的「pom.xml」,定位到</dependencies>标签前方,如下图所示:
在</dependencies>前添加如下内容:
<!-- fr -->
<dependency>
<groupId>fine-accumulator</groupId>
<artifactId>fine-accumulator</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-accumulator-10.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-activator</groupId>
<artifactId>fine-activator</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-activator-10.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-core</groupId>
<artifactId>fine-core</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-core-10.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-datasource</groupId>
<artifactId>fine-datasource</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-datasource-10.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-decision</groupId>
<artifactId>fine-decision</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-decision-10.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-decision-report</groupId>
<artifactId>fine-decision-report</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-decision-report-10.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-report-engine</groupId>
<artifactId>fine-report-engine</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-report-engine-10.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-schedule</groupId>
<artifactId>fine-schedule</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-schedule-10.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-schedule-report</groupId>
<artifactId>fine-schedule-report</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-schedule-report-10.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-swift-log-adaptor</groupId>
<artifactId>fine-swift-log-adaptor</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-swift-log-adaptor-10.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-third</groupId>
<artifactId>fine-third</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-third-10.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-webui</groupId>
<artifactId>fine-webui</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-webui-10.0.jar</systemPath>
</dependency>
<!-- bi -->
<dependency>
<groupId>fine-bi-adaptor</groupId>
<artifactId>fine-bi-adaptor</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-bi-adapter-5.1.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-bi-datamine</groupId>
<artifactId>fine-bi-datamine</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-bi-datamine-5.1.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-bi-datamine-third</groupId>
<artifactId>fine-bi-datamine-third</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-bi-datamine-third-5.1.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-bi-engine-spider</groupId>
<artifactId>fine-bi-engine-spider</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-bi-engine-spider-5.1.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-bi-engine-third</groupId>
<artifactId>fine-bi-engine-third</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-bi-engine-third-5.1.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-bi-foundation</groupId>
<artifactId>fine-bi-foundation</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-bi-foundation-5.1.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-decision-bi</groupId>
<artifactId>fine-decision-bi</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-decision-bi-10.0.jar</systemPath>
</dependency>
<dependency>
<groupId>fine-schedule-bi</groupId>
<artifactId>fine-schedule-bi</artifactId>
<scope>system</scope>
<systemPath>${pom.basedir}/src/main/webapp/WEB-INF/lib/fine-schedule-bi-10.0.jar</systemPath>
</dependency>
<!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
</dependency>显示代码
6)点击右下角的 Import Changes,如果没弹,说明开了自动Import,等待进度条走完即可。
3.4 配置开发环境Tomcat在
Tomcat官网 下载最新版本的Tomcat,放到项目路径下,解压到当前文件夹,如下图所示:
2)编辑 %Tomcat%/bin下的catalina.bat,如下图所示:
3)在此处加上内存限制,如下图所示:
4)返回 IDEA,点右上角的「Edit Configurations」,如下图所示:
5)点加号,选择Tomcat> Local,如下图所示:
6)选择设置(Configure),再点左上角的加号,选择解压好的 apache-tomcat 文件夹,修改名称并点击确定,如下图所示:
7)选择部署(Depolyment ),点击右侧加号,选择添加Artifact,选择项目名:war exploded,下方的应用上下文(Application Context)需要改成「/webroot」或实际需要的应用上下文,点击「确定」,如下图所示:
8)切换回服务器(Server)标签页,修改URL为http://localhost:8080/应用上下文/decision,本例为http://localhost:8080/webroot/decision,点击「确定」,如下图所示:
3.5 BI 兼容性操作进入%FineBI%/webroot/web-inf/lib目录下,打开fine-bi-engine-third-5.1.jar,如下图所示:
删掉 javax 下的 validation 文件夹,如下图所示:
删掉 com/google下的 gson ,如下图所示:
删掉 org 下的「slf4j」,如下图所示:
3.6 编译启动
1)选择Build>Build Artifacts,选择项目名:war exploded - Rebuild,如下图所示:
2)构建完毕后,点击右上角的「Debug」,如下图所示:
3.7 效果查看