query param check 수정

This commit is contained in:
jaewohong
2026-01-13 16:31:11 +09:00
parent 77b31f6fae
commit b77b28ae16
@@ -151,7 +151,7 @@ public class ApiAdapterService extends HttpAdapterServiceSupport {
case PUT: case PUT:
if (StringUtils.contains(request.getContentType(), "application/x-www-form-urlencoded")) { if (StringUtils.contains(request.getContentType(), "application/x-www-form-urlencoded")) {
isParameterType = true; isParameterType = true;
} else if (request.getContentType() == null || request.getContentType().isEmpty()) { // jwhong } else if ( StringUtils.isNoneBlank(request.getQueryString()) ) { // jwhong
isParameterType = true; isParameterType = true;
} else { } else {
isParameterType = false; isParameterType = false;