# wabacus-spring-boot-starter **Repository Path**: marsrobin/wabacus-spring-boot-starter ## Basic Information - **Project Name**: wabacus-spring-boot-starter - **Description**: No description available - **Primary Language**: Java - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-01-12 - **Last Updated**: 2024-01-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README wabacus-spring-boot-starter # 介绍 该项目是一个springboot插件,集成了wabacus开发框架,让wabacus这个古老的框架更容易的在springboot中使用。 Wabacus是一个完整的JAVAEE开发框架,目前主要使用该框架做报表,因为每个系统的业务功能开发完成后,基本都有数据统计的需求,使用该框架能够快速的开发各种复杂的报表。使用类Excel编辑的方式,完成完成系统基础数据的维护。 Wabacus的资料请在百度网盘自行下载:链接:https://pan.baidu.com/s/18sqovzNGrs9BQswt9cGKpw?pwd=4kiy 提取码:4kiy # 安装使用 1.在springboot项目中导入maven依赖 ```xml com.skynet.robin wabacus-spring-boot-starter 1.0 ``` 2.配置Wabacus默认加载路径 该插件默认的路径为:classpath:reportconfig。如果想要自定义报表配置路径可以在application.yml中定义wabacus.configpath ```yaml wabacus: configpath: classpath:xxxxx ``` 3.配置wabacus.cfg.xml ```xml com.mysql.jdbc.Driver root root 20 5 100 100 50 2 report/(report_)(\S*?)(\.xml) ``` 4.启动springboot 访问:http://localhost:8080/report.wx?PAGEID=listpage1 此处的report.wx在 wabacus.cfg.xml 中 showreport-url 该项,此为报表的入口地址。 在datasources中配置你的数据源。