Uses of Class
org.springframework.aot.hint.ProxyHints
Packages that use ProxyHints
Package
Description
Support for registering the need for reflection, resources, java
 serialization and proxies at runtime.
- 
Uses of ProxyHints in org.springframework.aot.hintMethods in org.springframework.aot.hint that return ProxyHintsModifier and TypeMethodDescriptionRuntimeHints.proxies()Provide access to proxy-based hints.ProxyHints.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.ProxyHints.registerJdkProxy(Class<?>... proxiedInterfaces) Register that a JDK proxy implementing the specified interfaces is required.ProxyHints.registerJdkProxy(Consumer<JdkProxyHint.Builder> jdkProxyHint) Register aJdkProxyHint.ProxyHints.registerJdkProxy(TypeReference... proxiedInterfaces) Register that a JDK proxy implementing the interfaces defined by the specifiedtype referencesis required.