2 Star 2 Fork 4

blacktea / SpringBootUseCaseCollection

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ProTestController.java 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
blacktea 提交于 2021-09-29 16:19 . create 新增模块webmagic-demo
package com.blacktea.webmagic.demo.controller;
import com.blacktea.webmagic.demo.domain.ItemPage;
import com.blacktea.webmagic.demo.domain.ListPage;
import com.blacktea.webmagic.demo.service.ExportService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletResponse;
/**
* @description:
* @author: black tea
* @date: 2021/9/24 16:18
*/
@RestController
@RequestMapping("pro")
@RequiredArgsConstructor
@Api(tags = "ProTestController", value = "测试导出")
public class ProTestController {
private final ExportService exportService;
@ApiOperation(value = "导出文章md")
@PostMapping("item/export/md")
public void exportCSDNMd(@RequestBody ItemPage itemPage, HttpServletResponse response){
exportService.itemExportMd(itemPage,response);
}
@ApiOperation(value = "导出文章匹配内容zip")
@PostMapping("item/export/zip")
public void exportCSDNZip(@RequestBody ItemPage itemPage,HttpServletResponse response){
exportService.itemExportZip(itemPage,response);
}
@ApiOperation(value = "根据列表页导出目标文章匹配内容zip")
@PostMapping("list/export/zip")
public void exportListZip(@RequestBody ListPage listPage, HttpServletResponse response){
exportService.listExportZip(listPage,response);
}
}
Java
1
https://gitee.com/zjydzyjs/spring-boot-use-case-collection.git
git@gitee.com:zjydzyjs/spring-boot-use-case-collection.git
zjydzyjs
spring-boot-use-case-collection
SpringBootUseCaseCollection
master

搜索帮助