Commit 19324914 authored by yang's avatar yang

Update jad.md

parent 6238fbdb
...@@ -2,11 +2,13 @@ ...@@ -2,11 +2,13 @@
本系统支持Excel文件导出排队处理,支持超大数据量,能实时查询文件生成情况,支持取消导出。 本系统支持Excel文件导出排队处理,支持超大数据量,能实时查询文件生成情况,支持取消导出。
#### 使用方法 #### 使用方法
1. 在代码中注入Excel导出Service 1. 在代码中注入Excel导出Service
```java ```java
@AutoWired @AutoWired
private ExcelExportServiceImpl excelService; private ExcelExportServiceImpl excelService;
``` ```
2. 在自己的controller中调用方法 2. 在自己的controller中调用方法
```java ```java
excelService.saveExportInfo(sqlId,iRequest,config,rowMaxNumber); excelService.saveExportInfo(sqlId,iRequest,config,rowMaxNumber);
``` ```
...@@ -19,11 +21,13 @@ excelService.saveExportInfo(sqlId,iRequest,config,rowMaxNumber); ...@@ -19,11 +21,13 @@ excelService.saveExportInfo(sqlId,iRequest,config,rowMaxNumber);
| rowMaxNumber | int | 生成Excel的最大行数,可使用重载方法,不包含次参数默认为1,000,000 | | rowMaxNumber | int | 生成Excel的最大行数,可使用重载方法,不包含次参数默认为1,000,000 |
3. 运行Excel导出程序(获取该程序,请联系部门相关负责人) 3. 运行Excel导出程序(获取该程序,请联系部门相关负责人)
```shell ```shell
java -jar hel-batch-parent.jar & java -jar hel-batch-parent.jar &
``` ```
4. Excel导出情况查询 4. Excel导出情况查询
用户若是为管理员身份,则查询全部人的导出情况,否则只显示当前用户的导出数据 用户若是为管理员身份,则查询全部人的导出情况,否则只显示当前用户的导出数据
```java ```java
excelService.queryExportInfo(status, iRequest); excelService.queryExportInfo(status, iRequest);
``` ```
...@@ -34,6 +38,7 @@ excelService.queryExportInfo(status, iRequest); ...@@ -34,6 +38,7 @@ excelService.queryExportInfo(status, iRequest);
| iRequest | IRequest | 带有上下文信息的reuqest对象 | | iRequest | IRequest | 带有上下文信息的reuqest对象 |
5. 下载已完成的Excel文件 5. 下载已完成的Excel文件
```java ```java
excel.downloadExcel(filePath, fileName, request, response); excel.downloadExcel(filePath, fileName, request, response);
``` ```
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment