Browse Source

Polishing

pull/36402/head
Sam Brannen 4 weeks ago
parent
commit
95080cabfd
  1. 16
      spring-core/src/main/java/org/springframework/aot/hint/RuntimeHints.java

16
spring-core/src/main/java/org/springframework/aot/hint/RuntimeHints.java

@ -17,15 +17,15 @@ @@ -17,15 +17,15 @@
package org.springframework.aot.hint;
/**
* Gather hints that can be used to optimize the application runtime.
* Hints that can be used to optimize the application runtime.
*
* <p>Use of reflection can be recorded for individual members of a type,
* lambdas,as well as broader {@linkplain MemberCategory member categories}.
* Access to resources can be specified using patterns or the base name of a
* <p>The use of reflection can be recorded for individual members of a type,
* lambdas, or broader {@linkplain MemberCategory member categories}.
*
* <p>Access to resources can be specified using patterns or the base name of a
* resource bundle.
*
* <p>Hints that require the need for Java serialization of proxies can be
* recorded as well.
* <p>The need for Java serialization or proxies can be recorded as well.
*
* @author Stephane Nicoll
* @author Janne Valkealahti
@ -81,8 +81,8 @@ public class RuntimeHints { @@ -81,8 +81,8 @@ public class RuntimeHints {
}
/**
* Provide access to jni-based hints.
* @return jni hints
* Provide access to JNI-based hints.
* @return JNI hints
*/
public ReflectionHints jni() {
return this.jni;

Loading…
Cancel
Save