com.lwohvye.tools.rest.LocalStorageController Maven / Gradle / Ivy
/*
* Copyright 2019-2020 Zheng Jie
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.lwohvye.tools.rest;
import com.lwohvye.log.annotation.Log;
import com.lwohvye.tools.domain.LocalStorage;
import com.lwohvye.exception.BadRequestException;
import com.lwohvye.tools.service.ILocalStorageService;
import com.lwohvye.tools.service.dto.LocalStorageQueryCriteria;
import com.lwohvye.utils.FileUtil;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import org.springframework.data.domain.Pageable;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
/**
* @author Zheng Jie
* @date 2019-09-05
*/
@RestController
@RequiredArgsConstructor
@Tag(name = "LocalStorageController", description = "工具:本地存储管理")
@RequestMapping("/api/localStorage")
public class LocalStorageController {
private final ILocalStorageService localStorageService;
@Operation(summary = "查询文件")
@GetMapping
public ResponseEntity