Skip to content

Commit f165807

Browse files
committed
Polish documentation for RegisterReflection
See gh-29194
1 parent c1f7d15 commit f165807

File tree

5 files changed

+84
-23
lines changed

5 files changed

+84
-23
lines changed

framework-docs/modules/ROOT/pages/core/aot.adoc

+17-21
Original file line numberDiff line numberDiff line change
@@ -517,32 +517,28 @@ Library authors can reuse this annotation for their own purposes.
517517
If components other than Spring beans need to be processed, a `BeanFactoryInitializationAotProcessor` can detect the relevant types and use `ReflectiveRuntimeHintsRegistrar` to process them.
518518

519519

520-
[[aot.hints.register-reflection-for-binding]]
521-
=== `@RegisterReflectionForBinding`
520+
[[aot.hints.register-reflection]]
521+
=== `@RegisterReflection`
522522

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.
525524

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`:
528526

529-
[tabs]
530-
======
531-
Java::
532-
+
533-
[source,java,indent=0,subs="verbatim,quotes",role="primary"]
534-
----
535-
@Component
536-
public class OrderService {
527+
include-code::./MyConfiguration[tag=snippet,indent=0]
537528

538-
@RegisterReflectionForBinding(Account.class)
539-
public void process(Order order) {
540-
// ...
541-
}
529+
`@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.
542530

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.
536+
537+
include-code::./OrderService[tag=snippet,indent=0]
538+
539+
This registers hints for constructors, fields, properties, and record components of `Order`.
540+
Hints are also registered for types transitively used on properties and record components.
541+
In other words, if `Order` exposes others types, hints are registered for those as well.
546542

547543
[[aot.hints.testing]]
548544
=== Testing Runtime Hints
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/*
2+
* Copyright 2002-2024 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package org.springframework.docs.core.aot.hints.registerreflection;
18+
19+
import org.springframework.aot.hint.MemberCategory;
20+
import org.springframework.aot.hint.annotation.RegisterReflection;
21+
import org.springframework.context.annotation.Configuration;
22+
23+
// tag::snippet[]
24+
@Configuration
25+
@RegisterReflection(classes = AccountService.class, memberCategories =
26+
{ MemberCategory.INVOKE_PUBLIC_CONSTRUCTORS, MemberCategory.INVOKE_PUBLIC_METHODS })
27+
class MyConfiguration {
28+
}
29+
// end::snippet[]
30+
31+
class AccountService {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
/*
2+
* Copyright 2002-2024 the original author or authors.
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package org.springframework.docs.core.aot.hints.registerreflection;
18+
19+
import org.springframework.aot.hint.annotation.RegisterReflectionForBinding;
20+
import org.springframework.stereotype.Component;
21+
22+
// tag::snippet[]
23+
@Component
24+
class OrderService {
25+
26+
@RegisterReflectionForBinding(Order.class)
27+
public void process(Order order) {
28+
// ...
29+
}
30+
31+
}
32+
// end::snippet[]
33+
34+
record Order() {}

spring-context/src/main/java/org/springframework/context/annotation/ImportRuntimeHints.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
* @since 6.0
6464
* @see org.springframework.aot.hint.RuntimeHints
6565
* @see org.springframework.aot.hint.annotation.Reflective
66-
* @see org.springframework.aot.hint.annotation.RegisterReflectionForBinding
66+
* @see org.springframework.aot.hint.annotation.RegisterReflection
6767
*/
6868
@Target({ElementType.TYPE, ElementType.METHOD})
6969
@Retention(RetentionPolicy.RUNTIME)

spring-test/src/main/java/org/springframework/test/context/aot/TestRuntimeHintsRegistrar.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* <p>As an alternative to implementing and registering a {@code TestRuntimeHintsRegistrar},
3838
* you may choose to annotate a test class with
3939
* {@link org.springframework.aot.hint.annotation.Reflective @Reflective},
40-
* {@link org.springframework.aot.hint.annotation.RegisterReflectionForBinding @RegisterReflectionForBinding},
40+
* {@link org.springframework.aot.hint.annotation.RegisterReflection @RegisterReflection},
4141
* or {@link org.springframework.context.annotation.ImportRuntimeHints @ImportRuntimeHints}.
4242
*
4343
* @author Sam Brannen

0 commit comments

Comments
 (0)