Skip to content
This repository was archived by the owner on Dec 31, 2024. It is now read-only.

Scenario with multiple file in array. #97

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
language: java

jdk:
- oraclejdk8
- openjdk8

install:
./mvnw --settings .settings.xml install -DskipTests=true -Dmaven.javadoc.skip=true -Dgpg.skip -B -V
Original file line number Diff line number Diff line change
@@ -29,6 +29,7 @@
import feign.form.MultipartFormContentProcessor;

import lombok.val;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.web.multipart.MultipartFile;

/**
@@ -63,9 +64,9 @@ public SpringFormEncoder (Encoder delegate) {
public void encode (Object object, Type bodyType, RequestTemplate template) throws EncodeException {
if (bodyType.equals(MultipartFile[].class)) {
val files = (MultipartFile[]) object;
val data = new HashMap<String, Object>(files.length, 1.F);
val data = new LinkedMultiValueMap<String, Object>();
for (val file : files) {
data.put(file.getName(), file);
data.add(file.getName(), file);
}
super.encode(data, MAP_STRING_WILDCARD, template);
} else if (bodyType.equals(MultipartFile.class)) {