Browse Source
Due to gh-29053, we can stop using RuntimeHintsUtils to register SynthesizedAnnotation proxies. Closes gh-29059pull/29130/head
12 changed files with 1 additions and 212 deletions
@ -1,37 +0,0 @@
@@ -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.beans.factory.annotation; |
||||
|
||||
import org.springframework.aot.hint.RuntimeHints; |
||||
import org.springframework.aot.hint.RuntimeHintsRegistrar; |
||||
import org.springframework.aot.hint.support.RuntimeHintsUtils; |
||||
import org.springframework.lang.Nullable; |
||||
|
||||
/** |
||||
* {@link RuntimeHintsRegistrar} implementation for bean factory annotations. |
||||
* |
||||
* @author Stephane Nicoll |
||||
* @since 6.0 |
||||
*/ |
||||
class BeanFactoryAnnotationsRuntimeHints implements RuntimeHintsRegistrar { |
||||
|
||||
@Override |
||||
@SuppressWarnings("deprecation") |
||||
public void registerHints(RuntimeHints hints, @Nullable ClassLoader classLoader) { |
||||
RuntimeHintsUtils.registerSynthesizedAnnotation(hints, Qualifier.class); |
||||
} |
||||
} |
||||
@ -1,43 +0,0 @@
@@ -1,43 +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.messaging.handler.annotation; |
||||
|
||||
import java.util.stream.Stream; |
||||
|
||||
import org.springframework.aot.hint.RuntimeHints; |
||||
import org.springframework.aot.hint.RuntimeHintsRegistrar; |
||||
import org.springframework.aot.hint.support.RuntimeHintsUtils; |
||||
import org.springframework.lang.Nullable; |
||||
import org.springframework.stereotype.Controller; |
||||
|
||||
/** |
||||
* {@link RuntimeHintsRegistrar} implementation that makes messaging |
||||
* annotations available at runtime. |
||||
* |
||||
* @author Sebastien Deleuze |
||||
* @since 6.0 |
||||
*/ |
||||
public class MessagingAnnotationsRuntimeHints implements RuntimeHintsRegistrar { |
||||
|
||||
@Override |
||||
@SuppressWarnings("deprecation") |
||||
public void registerHints(RuntimeHints hints, @Nullable ClassLoader classLoader) { |
||||
Stream.of(Controller.class, Header.class, Headers.class, Payload.class).forEach(annotationType -> |
||||
RuntimeHintsUtils.registerSynthesizedAnnotation(hints, annotationType)); |
||||
} |
||||
|
||||
} |
||||
@ -1,38 +0,0 @@
@@ -1,38 +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.messaging.simp.annotation; |
||||
|
||||
import org.springframework.aot.hint.RuntimeHints; |
||||
import org.springframework.aot.hint.RuntimeHintsRegistrar; |
||||
import org.springframework.aot.hint.support.RuntimeHintsUtils; |
||||
|
||||
/** |
||||
* {@link RuntimeHintsRegistrar} implementation that makes Simp annotations |
||||
* available at runtime. |
||||
* |
||||
* @author Sebastien Deleuze |
||||
* @since 6.0 |
||||
*/ |
||||
public class SimpAnnotationsRuntimeHints implements RuntimeHintsRegistrar { |
||||
|
||||
@Override |
||||
@SuppressWarnings("deprecation") |
||||
public void registerHints(RuntimeHints hints, ClassLoader classLoader) { |
||||
RuntimeHintsUtils.registerSynthesizedAnnotation(hints, SendToUser.class); |
||||
} |
||||
|
||||
} |
||||
@ -1,48 +0,0 @@
@@ -1,48 +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.web.bind.annotation; |
||||
|
||||
import java.util.stream.Stream; |
||||
|
||||
import org.springframework.aot.hint.RuntimeHints; |
||||
import org.springframework.aot.hint.RuntimeHintsRegistrar; |
||||
import org.springframework.aot.hint.support.RuntimeHintsUtils; |
||||
import org.springframework.lang.Nullable; |
||||
import org.springframework.stereotype.Controller; |
||||
|
||||
/** |
||||
* {@link RuntimeHintsRegistrar} implementation that makes web binding |
||||
* annotations available at runtime. |
||||
* |
||||
* @author Stephane Nicoll |
||||
* @since 6.0 |
||||
*/ |
||||
public final class WebAnnotationsRuntimeHintsRegistrar implements RuntimeHintsRegistrar { |
||||
|
||||
@Override |
||||
@SuppressWarnings("deprecation") |
||||
public void registerHints(RuntimeHints hints, @Nullable ClassLoader classLoader) { |
||||
Stream.of(Controller.class, ControllerAdvice.class, CookieValue.class, |
||||
CrossOrigin.class, MatrixVariable.class, ModelAttribute.class, |
||||
PathVariable.class, RequestAttribute.class, RequestHeader.class, |
||||
RequestMapping.class, RequestParam.class, RequestPart.class, |
||||
ResponseStatus.class, SessionAttribute.class, SessionAttributes.class) |
||||
.forEach(annotationType -> |
||||
RuntimeHintsUtils.registerSynthesizedAnnotation(hints, annotationType)); |
||||
} |
||||
|
||||
} |
||||
Loading…
Reference in new issue