springboot 조회 조건에 따라 excel 내보내기
2447 단어 레코드
org.apache.poi
poi-ooxml
3.17
controller 레이어
@RestController
@RequestMapping("/adminApi/excel")
public class ExcelController {
@Resource
private ExcelService excelService;
/*
*
* 2018/10/30+
* dayue
*/
@RequestMapping(value = "/export")
public void downloadAllClassmate(@RequestParam(value = "status") String status,
@RequestParam(value = "sex") String sex, @RequestParam(value = "type") String type,
@RequestParam(value = "firstTime") String firstTime, @RequestParam(value = "lastTime") String lastTime,
HttpServletResponse response) throws IOException {
HSSFWorkbook workbook = new HSSFWorkbook();
HSSFSheet sheet = workbook.createSheet(" ");
//
List classmateList = excelService.selectUser(status,sex,type,firstTime,lastTime);
//
String fileName = "User" + ".xls";//
// ,
int rowNum = 1;
// ( )
String[] headers = {" ", " "};
//headers excel
HSSFRow row = sheet.createRow(0);
// excel
for(int i=0;i
서비스 계층
List selectUser(String status,String sex, String type, String firstTime, String lastTime);
ServiceImp 계층
@Override
public List selectUser(String status,String sex, String type, String firstTime, String lastTime){
return bpUserMapper.findUser(status,sex,type,firstTime,lastTime);
}
ql는 당신의 조회 조건에 따라 ql 문장을 쓰면 쓰지 않습니다
마지막 포인트는post 요청을 get이나 링크로 요청할 수 없습니다. 그렇지 않으면 디코딩이 되돌아옵니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
react 비계 프로젝트는 https 방법으로텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.