HttpServletReques
邓国强-cd
一个注释写的很多的菜鸡
展开
-
No converter for [class xxx] Content-Type ‘appliction/octet-stream;charset=UTF-8‘ 的解决办法
报错的类:AbstractMessageConverterMethodProcessor报错的代码块报错原因respose在被传入其他的方法后,其content type 被篡改了,导致与request 的content type 不一致导致的解决方案一:将方法直接return null;解决方案二:在return 之前,将request 与response的content type 设置为一样...原创 2021-09-14 17:00:16 · 7508 阅读 · 1 评论 -
HttpServletRequest 接收Multipart请求并转发Multipart请求
pubic class demo{ public void reciveMultipartAndSend(HttpServletRequest httpServletRequest){ InputStream openStream = null; try { Map<String, EsbBusFile> files = new HashMap<>(...原创 2018-11-16 11:47:49 · 3373 阅读 · 0 评论