package io.dataease.controller; import io.dataease.service.CommonFilesService; import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import javax.annotation.Resource; @RestController @RequestMapping("common-files") public class CommonFilesController { @Resource private CommonFilesService commonFilesService; @GetMapping("/images/{imageId}") public ResponseEntity image(@PathVariable("imageId") String imageId) { return commonFilesService.getImageById(imageId); } }