> 如果想要在微服务下集成积木报表,那么请参考此文档(以jeecgcloud为示例,其他微服务根据项目本身进行集成即可) [TOC] ## 1、jeecgcloud项目下载 [gitee](https://gitee.com/jeecg/jeecg-boot) [github](https://github.com/jeecgboot/jeecg-boot) ## 2、后台项目路径 jeecg-cloud-module 微服务模块 接下来我们主要操作这个模块 ![](https://img.kancloud.cn/83/8c/838c1097af414dc3ed08b1c685b70764_480x493.png) ## 3、执行sql文件 ![](https://img.kancloud.cn/d7/c3/d7c3c270deab363f0a09e4e5f55aaaa0_532x682.png) ## 4、配置host文件 ``` 127.0.0.1 jeecg-boot-redis 127.0.0.1 jeecg-boot-mysql 127.0.0.1 jeecg-boot-nacos 127.0.0.1 jeecg-boot-gateway 127.0.0.1 jeecg-boot-system 127.0.0.1 jeecg-boot-xxljob 127.0.0.1 jeecg-boot-rabbitmq ``` ## 5、 jeecg-boot-module-system模块pom文件修改 ### 5.1、将jeecg-boot-module-demo注释掉 ![](https://img.kancloud.cn/4b/6c/4b6c2948f6c3b1fcd0754b02ef869fcf_1706x675.png) ### 5.2、添加积木报表最新依赖 ``` <dependency> <groupId>org.jeecgframework.jimureport</groupId> <artifactId>jimureport-spring-boot-starter</artifactId> <version>1.4.1</version> </dependency> ``` 如果存在可以直接修改版本号 ![](https://img.kancloud.cn/39/84/3984ad8bcd98393dcfdb7817754375f5_1676x537.png) ### 5.3、将打包插件改成true ![](https://img.kancloud.cn/50/ae/50ae50e9ecff10f1db32f93da1b020ba_1802x667.png) ## 6、启动jeecg-cloud-nacos模块 ![](https://img.kancloud.cn/28/fd/28fd3fe6aa45c0ecc16121d86c4c5466_1595x709.png) ![](https://img.kancloud.cn/e7/a7/e7a7e9f5094b52f1c6269c65410eda41_1842x506.png) 将application.yml中的注释掉的routes放开,如果在- id: jeecg-system中没有配置/jmreport/**需要手动添加上 ![](https://img.kancloud.cn/41/a1/41a1b29d7292e7eb2697ac9b1e30873f_1892x792.png) ## 7、启动jeecg-cloud-system-start模块 ![](https://img.kancloud.cn/af/e5/afe56ed7f20dbebb2e8fcab5f1426de5_1800x681.png) ## 8、启动jeecg-cloud-gateway模块 ![](https://img.kancloud.cn/e2/18/e218c92b0e872c689aec1e69241d6f32_1667x731.png) ## 9、访问报表链接 http://localhost:9999/jmreport/list ![](https://img.kancloud.cn/9c/34/9c34dc84e1f0e6174246aa26c124e9e8_1920x857.png) ## 10、常见问题 ### 10.1、微服务下静态资源访问不到 ![](https://img.kancloud.cn/f5/6d/f56d60b8bc17393293c6768df005826e_1443x958.png) 请参考此文档:[微服务下静态资源访问不到](http://report.jeecg.com/2506684) ### 10.2、jeecgcloud更多配置 请参考此文档:[微服务开发](http://doc.jeecg.com/2043892)