博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring mvc显示图片(个人记录)
阅读量:5298 次
发布时间:2019-06-14

本文共 291 字,大约阅读时间需要 1 分钟。

@ResponseBody

@RequestMapping(value = {"/",""}, method = RequestMethod.GET, produces = MediaType.IMAGE_JPEG_VALUE)
public byte[] getImageFormDB(@RequestParam Long picId) {
Image image = imageService.load(picId);
return image.getFile();
}

转载于:https://www.cnblogs.com/ly-radiata/p/5411232.html

你可能感兴趣的文章
[Swift]LeetCode479. 最大回文数乘积 | Largest Palindrome Product
查看>>
append()、extend()、insert()的作用
查看>>
项目经验
查看>>
'=='与equals的区别
查看>>
终端&作业控制&会话启动过程
查看>>
Flask—08-建立自己的博客(02)
查看>>
[LeetCode] 561. Array Partition I_Easy tag: Sort
查看>>
uboot ubi 命令使用
查看>>
[Spring boot] Configuring and Accessing a Data Source
查看>>
[PWA] 11. Serve skeleton cache for root
查看>>
[Javascript] Safer property access with Lodash's 'get' method
查看>>
linux ElasticSearch安装问题
查看>>
函数----基础,参数传递,返回类型和return语句
查看>>
logstash使用template提前设置好maping同步mysql数据到Elasticsearch5.5.2
查看>>
eclipse配置tomcat
查看>>
pku3311 Hie with the Pie(spfa+状态压缩)
查看>>
ios应用来电监听
查看>>
@resource和@autowired的区别是什么-CSDN论坛-CSDN.NET-中国最大的IT技术社区 - Google Chrome...
查看>>
【PostMan】1、Postman 发送json格式请求
查看>>
Domoticz 中接入斐讯 M1 空气质量检测仪
查看>>