You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: framework-docs/modules/ROOT/pages/core/aot.adoc
+17-21
Original file line number
Diff line number
Diff line change
@@ -517,32 +517,28 @@ Library authors can reuse this annotation for their own purposes.
517
517
If components other than Spring beans need to be processed, a `BeanFactoryInitializationAotProcessor` can detect the relevant types and use `ReflectiveRuntimeHintsRegistrar` to process them.
518
518
519
519
520
-
[[aot.hints.register-reflection-for-binding]]
521
-
=== `@RegisterReflectionForBinding`
520
+
[[aot.hints.register-reflection]]
521
+
=== `@RegisterReflection`
522
522
523
-
{spring-framework-api}/aot/hint/annotation/RegisterReflectionForBinding.html[`@RegisterReflectionForBinding`] is a specialization of `@Reflective` that registers the need for serializing arbitrary types.
524
-
A typical use case is the use of DTOs that the container cannot infer, such as using a web client within a method body.
523
+
{spring-framework-api}/aot/hint/annotation/RegisterReflection.html[`@RegisterReflection`] is a specialization of `@Reflective` that provides a declarative way of registering reflection for arbitrary types.
525
524
526
-
`@RegisterReflectionForBinding` can be applied to any Spring bean at the class level, but it can also be applied directly to a method, field, or constructor to better indicate where the hints are actually required.
527
-
The following example registers `Account` for serialization.
525
+
In the following example, public constructors and public methods can be invoked via reflection on `AccountService`:
`@RegisterReflection` can be applied to any Spring bean at the class level, but it can also be applied directly to a method to better indicate where the hints are actually required.
542
530
543
-
}
544
-
----
545
-
======
531
+
`@RegisterReflection` can be used as a meta-annotation to provide more specific needs.
532
+
{spring-framework-api}/aot/hint/annotation/RegisterReflectionForBinding.html[`@RegisterReflectionForBinding`] is such composed annotation and registers the need for serializing arbitrary types.
533
+
A typical use case is the use of DTOs that the container cannot infer, such as using a web client within a method body.
534
+
535
+
The following example registers `Order` for serialization.
0 commit comments