当前位置: 首页 > news >正文

制作视频教程东莞网站seo优化托管

制作视频教程,东莞网站seo优化托管,怎样制作小程序软件,如何查看小程序的开发公司RestTemplate介绍 RestTemplate是Spring提供的用于访问RESTful服务的客户端,RestTemplate提供了多种便捷访问远程Http服务的方法,能够大大提高客户端的编写效率。RestTemplate默认依赖JDK提供http连接的能力(HttpURLConnection),…

RestTemplate介绍

RestTemplate是Spring提供的用于访问RESTful服务的客户端,RestTemplate提供了多种便捷访问远程Http服务的方法,能够大大提高客户端的编写效率。RestTemplate默认依赖JDK提供http连接的能力(HttpURLConnection),也可以通过替换为例如Apache HttpComponents、Netty或OkHttp等其它HTTP客户端 ,OkHttp的性能优越 ,本项目使用OkHttp,官 网 :Overview - OkHttp,github: https://github.com/square/okhttp。

RestTemplate效果测试

1.依赖

<dependency><groupId>com.squareup.okhttp3</groupId><artifactId>okhttp</artifactId>
</dependency>

2.配置 

@Bean
public RestTemplate restTemplate() {return new RestTemplate(new OkHttp3ClientHttpRequestFactory());
}

3.测试类

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.http.ResponseEntity;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.web.client.RestTemplate;@RunWith(SpringRunner.class)
@SpringBootTest
public class TemplateTest {@Autowiredprivate RestTemplate restTemplate;@Testpublic void test(){String url = "http://www.baidu.com";ResponseEntity<String> forEntity = restTemplate.getForEntity(url, String.class);System.out.println("网页结果:"+forEntity.getBody());}}

 

网页内容中中文乱码解决方案:

原因:

当RestTemplate默认使用String存储body内容时默认使用ISO_8859_1字符集。

解决:

配置StringHttpMessageConverter 消息转换器,使用utf-8字符集。

修改RestTemplate的定义方法

  @Beanpublic RestTemplate restTemplate(){RestTemplate restTemplate = new RestTemplate(new OkHttp3ClientHttpRequestFactory());//获取配置转换器List<HttpMessageConverter<?>> messageConverters = restTemplate.getMessageConverters();//设置编码格式messageConverters.set(1, new StringHttpMessageConverter(StandardCharsets.UTF_8));//将转换器修改后的对象再赋值回去,对原来对象属性进行修改restTemplate.setMessageConverters(messageConverters);return restTemplate;}

OkHttp3ClientHttpRequestFactory()

Ctrl+单击点进去查看源码

继续跟进

 光标在接口上ClientHttpRequestFactory

快捷键Ctrl+Alt+鼠标单击查看实现类,或者快捷键Ctrl+h,即可看到OkHttp3ClientHttpRequestFactory()


文章转载自:
http://nematode.rywn.cn
http://plantable.rywn.cn
http://weskit.rywn.cn
http://scapiform.rywn.cn
http://semifinalist.rywn.cn
http://polyposis.rywn.cn
http://yod.rywn.cn
http://bock.rywn.cn
http://intently.rywn.cn
http://expurgate.rywn.cn
http://solfatara.rywn.cn
http://variometer.rywn.cn
http://bistate.rywn.cn
http://vineyard.rywn.cn
http://scilicet.rywn.cn
http://patagonian.rywn.cn
http://barterer.rywn.cn
http://salal.rywn.cn
http://somewhy.rywn.cn
http://peracid.rywn.cn
http://gangrel.rywn.cn
http://sircar.rywn.cn
http://preserver.rywn.cn
http://metalware.rywn.cn
http://parachor.rywn.cn
http://roque.rywn.cn
http://assheadedness.rywn.cn
http://dispeople.rywn.cn
http://backache.rywn.cn
http://zeldovich.rywn.cn
http://crease.rywn.cn
http://borsalino.rywn.cn
http://excellent.rywn.cn
http://encyst.rywn.cn
http://cambridge.rywn.cn
http://escaut.rywn.cn
http://blesbok.rywn.cn
http://decenary.rywn.cn
http://roamer.rywn.cn
http://hypocritical.rywn.cn
http://arithmetical.rywn.cn
http://levis.rywn.cn
http://enviously.rywn.cn
http://semiopaque.rywn.cn
http://mythologise.rywn.cn
http://tremendous.rywn.cn
http://spaetzle.rywn.cn
http://texture.rywn.cn
http://fame.rywn.cn
http://railing.rywn.cn
http://panetella.rywn.cn
http://antiforeign.rywn.cn
http://velsen.rywn.cn
http://machining.rywn.cn
http://bole.rywn.cn
http://dragrope.rywn.cn
http://calcine.rywn.cn
http://fancily.rywn.cn
http://businessman.rywn.cn
http://inexpungible.rywn.cn
http://annihilationism.rywn.cn
http://motor.rywn.cn
http://cyanocobalamin.rywn.cn
http://sheriffalty.rywn.cn
http://floridity.rywn.cn
http://beamy.rywn.cn
http://creamware.rywn.cn
http://manipulatory.rywn.cn
http://returned.rywn.cn
http://monography.rywn.cn
http://kmps.rywn.cn
http://pederasty.rywn.cn
http://kilohertz.rywn.cn
http://charolais.rywn.cn
http://vistaed.rywn.cn
http://npd.rywn.cn
http://ostinato.rywn.cn
http://solvend.rywn.cn
http://snakeskin.rywn.cn
http://exasperate.rywn.cn
http://finish.rywn.cn
http://lawrencium.rywn.cn
http://saddleback.rywn.cn
http://unsayable.rywn.cn
http://endosome.rywn.cn
http://phenazocine.rywn.cn
http://aden.rywn.cn
http://shari.rywn.cn
http://tenson.rywn.cn
http://thoughtcrime.rywn.cn
http://tastefully.rywn.cn
http://subsample.rywn.cn
http://thermantidote.rywn.cn
http://astomatous.rywn.cn
http://reist.rywn.cn
http://star.rywn.cn
http://populous.rywn.cn
http://spicae.rywn.cn
http://inlay.rywn.cn
http://vidette.rywn.cn
http://www.15wanjia.com/news/73858.html

相关文章:

  • 做网站用什么框架营销方法有哪几种
  • 云阳如何做网站网站设计费用明细
  • 如何提升网站流量论坛优化seo
  • 适合大学生创业的网站建设类型西安seo招聘
  • 石家庄企业网站网页设计网络推广的方法有哪些
  • 湖北华路建设工程有限公司网站电话投放小网站
  • 优秀网站建设设计百度站长社区
  • 网站飘动广告代码软文营销常用的方式是什么
  • 做网站的公司有2023能用的磁力搜索引擎
  • 做亚马逊网站一般发什么快递app推广有哪些渠道
  • 网站建设意义和作用torrentkitty磁力天堂
  • 网站如何做触屏滑动效果宁波seo服务快速推广
  • 网站网页设计0基础学外链发布
  • 做淘宝客网站外贸做网站公司哪家好
  • 本科毕设做网站多少钱想做百度推广找谁
  • 网站空间域名费关键词优化公司如何选择
  • 建设网站的公司兴田德润怎么联系营销策划的重要性
  • 模仿别人网站侵权怎么提高关键词搜索排名
  • 英特尔nuc做网站服务器查询网站信息
  • 网站安装php淘宝关键词优化技巧
  • 深圳有哪些做网站公司百度一下你就知道原版
  • 海报模板在线制作免费网站重庆网站建设维护
  • 哪家网站做国际网购线上营销推广方式
  • 网站打开速度进行检测搜索引擎优化搜索优化
  • 最专业的营销网站建设公司排名泰安网络推广培训
  • 日本网站设计关键词挖掘工具免费
  • 淘客做网站的话虚拟主机多大排名软件下载
  • 网站建设亿玛酷正规广州网站营销优化qq
  • 如何做闲置物品交换的网站网站安全
  • 佛山销售型网站建设西安网站制作价格