@ -58,7 +58,7 @@ public class MybatisPlugin extends AbstractComponent implements Interceptor {
Object[] args = invocation.getArgs();
String methodName = method.toString();
log().debug(methodName);
// log().debug(methodName);
if (methodName.contains("Executor.query"))
return query((Executor)target, (MappedStatement)args[0], args[1], (RowBounds)args[2], (ResultHandler<?>)args[3]);
@ -422,6 +422,17 @@ public class WebClient {
return this;
}
/**요청으로 전달할 데이터를 설정한다.
* @param map 요청으로 전달할 데이터를 갖는 맵. 맵의 키는 파라미터 이름으로 쓰인다.
* @return 현재 Request
*/
public Request data(Map<String, ?> map) {
if (map != null) {
map.forEach(this::data);
* @param data 데이터 값