Uses of Class
org.springframework.aot.hint.ClassProxyHint.Builder
Packages that use ClassProxyHint.Builder
Package
Description
Support for registering the need for reflection, resources, java
serialization and proxies at runtime.
-
Uses of ClassProxyHint.Builder in org.springframework.aot.hint
Methods in org.springframework.aot.hint that return ClassProxyHint.BuilderModifier and TypeMethodDescriptionstatic ClassProxyHint.Builder
Initialize a builder with the target class to use.static ClassProxyHint.Builder
ClassProxyHint.of
(TypeReference targetClass) Initialize a builder with the target class to use.ClassProxyHint.Builder.proxiedInterfaces
(Class<?>... proxiedInterfaces) Add the specified interfaces that the proxy should implement.ClassProxyHint.Builder.proxiedInterfaces
(TypeReference... proxiedInterfaces) Add the specified interfaces that the proxy should implement.Method parameters in org.springframework.aot.hint with type arguments of type ClassProxyHint.BuilderModifier and TypeMethodDescriptionProxyHints.registerClassProxy
(Class<?> targetClass, Consumer<ClassProxyHint.Builder> classProxyHint) Register that a class proxy is required for the specified class.ProxyHints.registerClassProxy
(TypeReference targetClass, Consumer<ClassProxyHint.Builder> classProxyHint) Register that a class proxy is required for the class defined by the specifiedTypeReference
.