Interface IntrospectionConfigurer

All Known Implementing Classes:
IntrospectionService

public interface IntrospectionConfigurer
Allows to replace the default bean introspector with a custom implementation. The default introspector internally uses the `java.beans.Introspector` which has some limitations. The most important one being that it only operates on getters and setters. In case field introspection is needed a custom introspector must be used. An introspector can be set as global default or on a per-property basis. It is also possible to turn off introspection for specific properties in which case they will simply be compared via `equals` method.