public abstract class

AnnotationBeanUtils

extends Object
java.lang.Object
   ↳ org.springframework.beans.annotation.AnnotationBeanUtils

Class Overview

General utility methods for working with annotations in JavaBeans style.

Summary

Public Constructors
AnnotationBeanUtils()
Public Methods
static void copyPropertiesToBean(Annotation ann, Object bean, String... excludedProperties)
Copy the properties of the supplied Annotation to the supplied target bean.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public AnnotationBeanUtils ()

Also: SpringBeans

Public Methods

public static void copyPropertiesToBean (Annotation ann, Object bean, String... excludedProperties)

Also: SpringBeans

Copy the properties of the supplied Annotation to the supplied target bean. Any properties defined in excludedProperties will not be copied.

See Also