之前,筆者寫了《使用Spring Cloud Feign上傳文件》。近日,有同事在對(duì)接遺留的Struts古董系統(tǒng),需要使用Feign實(shí)現(xiàn)Form表單提交。其實(shí)步驟大同小異,本文附上步驟,算是對(duì)之前那篇的補(bǔ)充。
添加依賴:
1
2
3
4
5
6
7
8
9
10
|
< dependency > < groupId >io.github.openfeign.form</ groupId > < artifactId >feign-form</ artifactId > < version >3.2.2</ version > </ dependency > < dependency > < groupId >io.github.openfeign.form</ groupId > < artifactId >feign-form-spring</ artifactId > < version >3.2.2</ version > </ dependency > |
Feign Client示例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
@FeignClient (name = "xxx" , url = "http://www.itmuch.com/" , configuration = TestFeignClient.FormSupportConfig. class ) public interface TestFeignClient { @PostMapping (value = "/test" , consumes = {MediaType.APPLICATION_FORM_URLENCODED_VALUE}, produces = {MediaType.APPLICATION_JSON_UTF8_VALUE} ) void post(Map<String, ?> queryParam); class FormSupportConfig { @Autowired private ObjectFactory<HttpMessageConverters> messageConverters; // new一個(gè)form編碼器,實(shí)現(xiàn)支持form表單提交 @Bean public Encoder feignFormEncoder() { } // 開啟Feign的日志 @Bean public Logger.Level logger() { return Logger.Level.FULL; } } } |
調(diào)用示例:
1
2
3
4
5
6
7
8
|
@GetMapping ( "/user/{id}" ) public User findById( @PathVariable Long id) { HashMap<String, String> param = Maps.newHashMap(); param.put( "username" , "zhangsan" ); param.put( "password" , "pwd" ); this .testFeignClient.post(param); return new User(); } |
日志:
...[TestFeignClient#post] ---> POST http://www.baidu.com/test HTTP/1.1
...[TestFeignClient#post] Accept: application/json;charset=UTF-8
...[TestFeignClient#post] Content-Type: application/x-www-form-urlencoded; charset=UTF-8
...[TestFeignClient#post] Content-Length: 30
...[TestFeignClient#post]
...[TestFeignClient#post] password=pwd&username=zhangsan
...[TestFeignClient#post] ---> END HTTP (30-byte body)
由日志可知,此時(shí)Feign已能使用Form表單方式提交數(shù)據(jù)。
參考文檔
https://github.com/OpenFeign/feign-form
https://stackoverflow.com/questions/35803093/how-to-post-form-url-encoded-data-with-spring-cloud-feign
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持服務(wù)器之家。
原文鏈接:http://www.itmuch.com/spring-cloud-sum/feign-form-params/