26 changed files with 76 additions and 121 deletions
@ -1,4 +1,5 @@ |
|||||||
org.springframework.beans.factory.aot.BeanFactoryInitializationAotProcessor=\ |
org.springframework.beans.factory.aot.BeanFactoryInitializationAotProcessor=\ |
||||||
org.springframework.beans.factory.aot.BeanRegistrationsAotProcessor |
org.springframework.beans.factory.aot.BeanRegistrationsAotProcessor |
||||||
|
|
||||||
org.springframework.aot.hint.RuntimeHintsRegistrar=\ |
org.springframework.aot.hint.RuntimeHintsRegistrar=\ |
||||||
org.springframework.beans.factory.annotation.JakartaAnnotationsRuntimeHintsRegistrar |
org.springframework.beans.factory.annotation.JakartaAnnotationsRuntimeHints |
||||||
@ -1,2 +1,2 @@ |
|||||||
org.springframework.aot.hint.RuntimeHintsRegistrar= \ |
org.springframework.aot.hint.RuntimeHintsRegistrar= \ |
||||||
org.springframework.mail.javamail.MimeTypeResourceHintsRegistrar |
org.springframework.mail.javamail.JavaMailMimeTypesRuntimeHints |
||||||
@ -1,37 +0,0 @@ |
|||||||
/* |
|
||||||
* Copyright 2002-2022 the original author or authors. |
|
||||||
* |
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
||||||
* you may not use this file except in compliance with the License. |
|
||||||
* You may obtain a copy of the License at |
|
||||||
* |
|
||||||
* https://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
* |
|
||||||
* Unless required by applicable law or agreed to in writing, software |
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, |
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
||||||
* See the License for the specific language governing permissions and |
|
||||||
* limitations under the License. |
|
||||||
*/ |
|
||||||
|
|
||||||
package org.springframework.scheduling.annotation; |
|
||||||
|
|
||||||
import org.springframework.aot.hint.RuntimeHints; |
|
||||||
import org.springframework.aot.hint.RuntimeHintsRegistrar; |
|
||||||
import org.springframework.aot.hint.support.RuntimeHintsUtils; |
|
||||||
|
|
||||||
/** |
|
||||||
* {@link RuntimeHintsRegistrar} implementation that registers runtime hints for |
|
||||||
* {@link Scheduled} annotation. |
|
||||||
* |
|
||||||
* @author Sebastien Deleuze |
|
||||||
* @since 6.0 |
|
||||||
*/ |
|
||||||
public class ScheduledAnnotationRuntimeHintsRegistrar implements RuntimeHintsRegistrar { |
|
||||||
|
|
||||||
@Override |
|
||||||
public void registerHints(RuntimeHints hints, ClassLoader classLoader) { |
|
||||||
RuntimeHintsUtils.registerAnnotation(hints, Scheduled.class); |
|
||||||
RuntimeHintsUtils.registerAnnotation(hints, Schedules.class); |
|
||||||
} |
|
||||||
} |
|
||||||
@ -1,40 +0,0 @@ |
|||||||
/* |
|
||||||
* Copyright 2002-2022 the original author or authors. |
|
||||||
* |
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|
||||||
* you may not use this file except in compliance with the License. |
|
||||||
* You may obtain a copy of the License at |
|
||||||
* |
|
||||||
* https://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
* |
|
||||||
* Unless required by applicable law or agreed to in writing, software |
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS, |
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
||||||
* See the License for the specific language governing permissions and |
|
||||||
* limitations under the License. |
|
||||||
*/ |
|
||||||
|
|
||||||
package org.springframework.validation.beanvalidation; |
|
||||||
|
|
||||||
import jakarta.validation.Validator; |
|
||||||
|
|
||||||
import org.springframework.aop.framework.AopProxyUtils; |
|
||||||
import org.springframework.aot.hint.RuntimeHints; |
|
||||||
import org.springframework.aot.hint.RuntimeHintsRegistrar; |
|
||||||
import org.springframework.lang.Nullable; |
|
||||||
|
|
||||||
/** |
|
||||||
* {@link RuntimeHintsRegistrar} implementation that registers proxy entries |
|
||||||
* for {@link MethodValidationPostProcessor}. |
|
||||||
* |
|
||||||
* @author Sebastien Deleuze |
|
||||||
* @since 6.0 |
|
||||||
*/ |
|
||||||
public class MethodValidationRuntimeHintsRegistrar implements RuntimeHintsRegistrar { |
|
||||||
|
|
||||||
@Override |
|
||||||
public void registerHints(RuntimeHints hints, @Nullable ClassLoader classLoader) { |
|
||||||
hints.proxies().registerJdkProxy(AopProxyUtils.completeJdkProxyInterfaces(Validator.class)); |
|
||||||
} |
|
||||||
|
|
||||||
} |
|
||||||
@ -1,3 +1,3 @@ |
|||||||
org.springframework.aot.hint.RuntimeHintsRegistrar=\ |
org.springframework.aot.hint.RuntimeHintsRegistrar=\ |
||||||
org.springframework.aot.hint.support.CoreAnnotationsRuntimeHintsRegistrar,\ |
org.springframework.aot.hint.support.CoreAnnotationsRuntimeHints,\ |
||||||
org.springframework.aot.hint.support.SpringFactoriesLoaderRuntimeHintsRegistrar |
org.springframework.aot.hint.support.SpringFactoriesLoaderRuntimeHints |
||||||
|
|||||||
@ -1,4 +1,4 @@ |
|||||||
org.springframework.aot.hint.RuntimeHintsRegistrar= \ |
org.springframework.aot.hint.RuntimeHintsRegistrar= \ |
||||||
org.springframework.http.MediaTypeResourceHintsRegistrar,\ |
org.springframework.http.HttpMimeTypesRuntimeHints,\ |
||||||
org.springframework.http.codec.CodecConfigurerHintsRegistrar,\ |
org.springframework.http.codec.CodecConfigurerRuntimeHints,\ |
||||||
org.springframework.http.converter.json.JacksonBuilderRuntimeHintsRegistrar |
org.springframework.http.converter.json.JacksonModulesRuntimeHints |
||||||
@ -1,2 +1,2 @@ |
|||||||
org.springframework.aot.hint.RuntimeHintsRegistrar= \ |
org.springframework.aot.hint.RuntimeHintsRegistrar= \ |
||||||
org.springframework.web.socket.server.support.HandshakeHandlerRuntimeHintsRegistrar |
org.springframework.web.socket.server.support.HandshakeHandlerRuntimeHints |
||||||
Loading…
Reference in new issue