All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.joker17.http.request.config.PostRequestConfig Maven / Gradle / Ivy

Go to download

对httpclient进行一定封装,使一些常规请求操作使用起来更简单

The newest version!
package com.joker17.http.request.config;

import com.joker17.http.request.core.HttpConstants;
import lombok.*;

@Data
@RequiredArgsConstructor(staticName = "of")
@EqualsAndHashCode(callSuper = true)
@ToString(callSuper = true)
public class PostRequestConfig extends RequestBodyAndFileConfig {

    {
        method = HttpConstants.POST_METHOD;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy