Spring使用RestTemplate模拟form提交示例
程序员文章站
2022-03-25 15:48:54
resttemplate是用来在客户端访问web服务的类。和其他的spring中的模板类(如jdbctemplate、jmstemplate)很相似,我们还可以通过提供回调...
resttemplate是用来在客户端访问web服务的类。和其他的spring中的模板类(如jdbctemplate、jmstemplate)很相似,我们还可以通过提供回调方法和配置httpmessageconverter类来客户化该模板。客户端的操作可以完全使用resttemplate和httpmessageconveter类来执行。
1.声明resttemplate的bean
@bean public resttemplate resttemplate(){ return new resttemplate(); }
2.模拟调用
@service public class smsservice { //注入resttemplate @autowired resttemplate resttemplate; public string sendmsg(string phonenum,string text){ //请求头设置 httpheaders headers = new httpheaders(); headers.setcontenttype(mediatype.application_form_urlencoded); //提交参数设置 multivaluemap<string,string> p = new linkedmultivaluemap<>(); p.add("username","xxx"); p.add("password","yyy"); p.add("phonenum",phonenum); p.add("content",text); //提交请求 httpentity< multivaluemap<string,string>> entity = new httpentity< multivaluemap<string,string>>(p,headers); string result = resttemplate.postforobject("http://....",entity,string.class); return result; } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: JS函数进阶之prototy用法实例分析