File tree 2 files changed +8
-7
lines changed
java/org/springframework/data/web/aot
resources/META-INF/spring
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*/
16
- package org .springframework .data .web .aot . hint ;
16
+ package org .springframework .data .web .aot ;
17
17
18
18
import org .springframework .aot .hint .RuntimeHints ;
19
19
import org .springframework .aot .hint .RuntimeHintsRegistrar ;
22
22
import org .springframework .lang .Nullable ;
23
23
24
24
/**
25
+ * {@link RuntimeHintsRegistrar} providing hints for web usage.
26
+ *
25
27
* @author Christoph Strobl
26
28
* @since 3.2.3
27
29
*/
28
- public class WebRuntimeHints implements RuntimeHintsRegistrar {
30
+ class WebRuntimeHints implements RuntimeHintsRegistrar {
29
31
30
32
@ Override
31
33
public void registerHints (RuntimeHints hints , @ Nullable ClassLoader classLoader ) {
32
34
33
- hints .reflection ().registerType (TypeReference .of ("org.springframework.data.domain.Unpaged" ), hint -> {
34
- hint .onReachableType (PageModule .class );
35
- });
35
+ hints .reflection ().registerType (TypeReference .of ("org.springframework.data.domain.Unpaged" ),
36
+ hint -> hint .onReachableType (PageModule .class ));
36
37
}
37
38
}
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ org.springframework.beans.factory.aot.BeanFactoryInitializationAotProcessor=\
4
4
org.springframework.aot.hint.RuntimeHintsRegistrar=\
5
5
org.springframework.data.repository.aot.hint.RepositoryRuntimeHints,\
6
6
org.springframework.data.querydsl.aot.QuerydslHints,\
7
- org.springframework.data.web.aot.hint. WebRuntimeHints
7
+ org.springframework.data.web.aot.WebRuntimeHints
8
8
9
9
org.springframework.beans.factory.aot.BeanRegistrationAotProcessor=\
10
- org.springframework.data.aot.AuditingBeanRegistrationAotProcessor
10
+ org.springframework.data.aot.AuditingBeanRegistrationAotProcessor
You can’t perform that action at this time.
0 commit comments