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

com.wing321.annotations.runtime.springmvc.AutoEncoding Maven / Gradle / Ivy

The newest version!
package com.wing321.annotations.runtime.springmvc;

import java.lang.annotation.*;

/**
 * 该注解标注的类将进行字符串成员变量进行字符集转换
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD, ElementType.TYPE})
public @interface AutoEncoding {
    String charset() default "UTF-8";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy