@Target(value=FIELD)
@Retention(value=RUNTIME)
public @interface Ignore
忽略不想转换的字段.Ignore the field which do not want to transfer.
建议尽可能少用该注解,因为很多时间你可以用默认忽略null/空字符的特性达到同样的效果.
It is recommended that the annotation be used as little as possible,
because many times you can use the following features to achieve the same effect:
the null and empty string are not handled by default.
- 从以下版本开始:
- 1.9
- 作者:
- Kingstar