RestTemplate
叮叮当当的心
这个作者很懒,什么都没留下…
展开
-
springboot中拦截器里面RedisTemplate注入为空
遇到一个问题,就是springboot加了个全局拦截器,然后需要redis存储,但是一直提示redis为空,后来发现需要需要配置类里面初始化一下@Configurationpublic class CorsConfig { //我的拦截器 @Bean public HttpTokenFilter getSessionInterceptor() { return new HttpTokenFilter(); }}拦截器加载的时间点在springcontex原创 2021-04-02 14:59:11 · 866 阅读 · 0 评论 -
遇到个RestTemplate接收 application/octet-stream的问题
RestTemplate 访问别人接口,用object,JsonObjet都无法接收,后台查询用resource接收ResponseEntity<Resource> response = template.postForEntity(url1.toString(), requestEntity, Resource.class);由于接收的是pdf文件对接收到的这么处理InputStream stream= response.getBody().getInputStream();原创 2020-08-17 15:33:25 · 5761 阅读 · 2 评论