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

com.jianggujin.http.support.annotation.JCharset Maven / Gradle / Ivy

package com.jianggujin.http.support.annotation;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import com.jianggujin.http.util.JDataUtils;

/**
 * 请求编码
 * 
 * @author jianggujin
 *
 */
@Retention(RUNTIME)
@Target({ TYPE, METHOD })
public @interface JCharset {
   String value() default JDataUtils.defaultCharset;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy