Commit 4a69bb4a authored by ZhengJie's avatar ZhengJie
Browse files

[代码优化](v2.6):日志请求参数获取优化,日志优化

parent 53af24e1
...@@ -22,7 +22,6 @@ import me.zhengjie.exception.BadRequestException; ...@@ -22,7 +22,6 @@ import me.zhengjie.exception.BadRequestException;
import me.zhengjie.service.LocalStorageService; import me.zhengjie.service.LocalStorageService;
import me.zhengjie.service.dto.LocalStorageQueryCriteria; import me.zhengjie.service.dto.LocalStorageQueryCriteria;
import me.zhengjie.utils.FileUtil; import me.zhengjie.utils.FileUtil;
import me.zhengjie.utils.SecurityUtils;
import org.springframework.data.domain.Pageable; import org.springframework.data.domain.Pageable;
import org.springframework.http.HttpStatus; import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity; import org.springframework.http.ResponseEntity;
...@@ -31,7 +30,6 @@ import org.springframework.validation.annotation.Validated; ...@@ -31,7 +30,6 @@ import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import io.swagger.annotations.*; import io.swagger.annotations.*;
import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpServletResponse;
import java.io.IOException; import java.io.IOException;
...@@ -54,7 +52,6 @@ public class LocalStorageController { ...@@ -54,7 +52,6 @@ public class LocalStorageController {
return new ResponseEntity<>(localStorageService.queryAll(criteria,pageable),HttpStatus.OK); return new ResponseEntity<>(localStorageService.queryAll(criteria,pageable),HttpStatus.OK);
} }
@Log("导出数据")
@ApiOperation("导出数据") @ApiOperation("导出数据")
@GetMapping(value = "/download") @GetMapping(value = "/download")
@PreAuthorize("@el.check('storage:list')") @PreAuthorize("@el.check('storage:list')")
...@@ -70,7 +67,6 @@ public class LocalStorageController { ...@@ -70,7 +67,6 @@ public class LocalStorageController {
return new ResponseEntity<>(HttpStatus.CREATED); return new ResponseEntity<>(HttpStatus.CREATED);
} }
@Log("上传图片")
@PostMapping("/pictures") @PostMapping("/pictures")
@ApiOperation("上传图片") @ApiOperation("上传图片")
public ResponseEntity<Object> upload(@RequestParam MultipartFile file){ public ResponseEntity<Object> upload(@RequestParam MultipartFile file){
...@@ -83,6 +79,7 @@ public class LocalStorageController { ...@@ -83,6 +79,7 @@ public class LocalStorageController {
return new ResponseEntity<>(localStorage, HttpStatus.OK); return new ResponseEntity<>(localStorage, HttpStatus.OK);
} }
@Log("修改文件")
@ApiOperation("修改文件") @ApiOperation("修改文件")
@PutMapping @PutMapping
@PreAuthorize("@el.check('storage:edit')") @PreAuthorize("@el.check('storage:edit')")
...@@ -91,7 +88,7 @@ public class LocalStorageController { ...@@ -91,7 +88,7 @@ public class LocalStorageController {
return new ResponseEntity<>(HttpStatus.NO_CONTENT); return new ResponseEntity<>(HttpStatus.NO_CONTENT);
} }
@Log("多选删除") @Log("删除文件")
@DeleteMapping @DeleteMapping
@ApiOperation("多选删除") @ApiOperation("多选删除")
public ResponseEntity<Object> delete(@RequestBody Long[] ids) { public ResponseEntity<Object> delete(@RequestBody Long[] ids) {
......
...@@ -63,14 +63,12 @@ public class QiniuController { ...@@ -63,14 +63,12 @@ public class QiniuController {
return new ResponseEntity<>(HttpStatus.OK); return new ResponseEntity<>(HttpStatus.OK);
} }
@Log("导出数据")
@ApiOperation("导出数据") @ApiOperation("导出数据")
@GetMapping(value = "/download") @GetMapping(value = "/download")
public void download(HttpServletResponse response, QiniuQueryCriteria criteria) throws IOException { public void download(HttpServletResponse response, QiniuQueryCriteria criteria) throws IOException {
qiNiuService.downloadList(qiNiuService.queryAll(criteria), response); qiNiuService.downloadList(qiNiuService.queryAll(criteria), response);
} }
@Log("查询文件")
@ApiOperation("查询文件") @ApiOperation("查询文件")
@GetMapping @GetMapping
public ResponseEntity<Object> query(QiniuQueryCriteria criteria, Pageable pageable){ public ResponseEntity<Object> query(QiniuQueryCriteria criteria, Pageable pageable){
......
Supports Markdown
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