Spring Boot项目获取resources目录下的文件并返回给前端
在Spring Boot项目中,你可以使用ResourceLoader
接口或者@Value
注解来获取resources
目录下的文件,并通过RestController
返回给前端。以下是一个简单的例子:
import org.springframework.beans.factory.annotation.Value;
import org.springframework.core.io.Resource;
import org.springframework.core.io.ResourceLoader;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class FileController {
@Value("classpath:static/filename.ext") // 替换为你的文件路径
private Resource fileResource;
@GetMapping("/file")
public ResponseEntity<Resource> downloadFile() {
return ResponseEntity.ok()
.contentType(MediaType.parseMediaType("application/octet-stream")) // 根据文件类型设置正确的MediaType
.body(fileResource);
}
}
确保将filename.ext
替换为你的文件名和扩展名。这段代码会将resources/static/filename.ext
文件作为文件下载返回给前端。如果你需要直接在浏览器中打开而不是下载,你可能需要设置适当的MediaType
以便浏览器能够正确处理文件。
评论已关闭