org.codehaus.jackson.map.introspect.AnnotatedField.fixAccess()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(2.0k)|赞(0)|评价(0)|浏览(120)

本文整理了Java中org.codehaus.jackson.map.introspect.AnnotatedField.fixAccess()方法的一些代码示例,展示了AnnotatedField.fixAccess()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。AnnotatedField.fixAccess()方法的具体详情如下:
包路径:org.codehaus.jackson.map.introspect.AnnotatedField
类名称:AnnotatedField
方法名:fixAccess

AnnotatedField.fixAccess介绍

[英]Method that can be called to modify access rights, by calling java.lang.reflect.AccessibleObject#setAccessible on the underlying annotated element.
[中]方法,通过调用java可以调用该方法来修改访问权限。朗。反思。AccessibleObject#在底层注释元素上设置Accessible。

代码示例

代码示例来源:origin: org.codehaus.jackson/jackson-mapper-asl

field.fixAccess();

代码示例来源:origin: camunda/camunda-bpm-platform

field.fixAccess();

代码示例来源:origin: org.codehaus.jackson/com.springsource.org.codehaus.jackson.mapper

AnnotatedField af = en.getValue();
if (fixAccess) {
  af.fixAccess();

代码示例来源:origin: org.codehaus.jackson/com.springsource.org.codehaus.jackson.mapper

protected SettableBeanProperty constructSettableProperty(DeserializationConfig config,
                             BasicBeanDescription beanDesc,
                             String name,
                             AnnotatedField field)
  throws JsonMappingException
{
  // need to ensure method is callable (for non-public)
  if (config.isEnabled(DeserializationConfig.Feature.CAN_OVERRIDE_ACCESS_MODIFIERS)) {
    field.fixAccess();
  }
  JavaType type = resolveType(config, beanDesc, field.getGenericType(), field);
  /* First: does the Method specify the deserializer to use?
   * If so, let's use it.
   */
  JsonDeserializer<Object> propDeser = findDeserializerFromAnnotation(config, field);
  
  Field f = field.getAnnotated();
  if (propDeser != null) {
    SettableBeanProperty prop = new SettableBeanProperty.FieldProperty(name, type, f);
    prop.setValueDeserializer(propDeser);
    return prop;
  }
  // Otherwise, method may specify more specific (sub-)class for
  // value (no need to check if explicit deser was specified):
  type = modifyTypeByAnnotation(config, field, type);
  return new SettableBeanProperty.FieldProperty(name, type, f);
}

代码示例来源:origin: com.barchart.wrap/barchart-wrap-jackson

field.fixAccess();

代码示例来源:origin: org.codehaus.jackson/jackson-mapper-lgpl

field.fixAccess();

代码示例来源:origin: ovea-deprecated/jetty-session-redis

field.fixAccess();

相关文章