query param check 수정
This commit is contained in:
@@ -151,7 +151,7 @@ public class ApiAdapterService extends HttpAdapterServiceSupport {
|
||||
case PUT:
|
||||
if (StringUtils.contains(request.getContentType(), "application/x-www-form-urlencoded")) {
|
||||
isParameterType = true;
|
||||
} else if (request.getContentType() == null || request.getContentType().isEmpty()) { // jwhong
|
||||
} else if ( StringUtils.isNoneBlank(request.getQueryString()) ) { // jwhong
|
||||
isParameterType = true;
|
||||
} else {
|
||||
isParameterType = false;
|
||||
|
||||
Reference in New Issue
Block a user