spring RequestMappingReflectiveProcessor 源码

  • 2022-08-08
  • 浏览 (366)

spring RequestMappingReflectiveProcessor 代码

文件路径:/spring-web/src/main/java/org/springframework/web/bind/annotation/RequestMappingReflectiveProcessor.java

/*
 * 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.lang.reflect.AnnotatedElement;
import java.lang.reflect.Method;
import java.lang.reflect.Parameter;
import java.lang.reflect.Type;

import org.springframework.aot.hint.ExecutableMode;
import org.springframework.aot.hint.ReflectionHints;
import org.springframework.aot.hint.annotation.ReflectiveProcessor;
import org.springframework.context.aot.BindingReflectionHintsRegistrar;
import org.springframework.core.MethodParameter;
import org.springframework.core.annotation.AnnotatedElementUtils;
import org.springframework.http.HttpEntity;
import org.springframework.lang.Nullable;

/**
 * {@link ReflectiveProcessor} implementation for {@link RequestMapping}
 * annotated types. On top of registering reflection hints for invoking
 * the annotated method, this implementation handles:
 * <ul>
 *     <li>Return types annotated with {@link ResponseBody}.</li>
 *     <li>Parameters annotated with {@link RequestBody}.</li>
 *     <li>{@link HttpEntity} return type and parameters.</li>
 * </ul>
 *
 * @author Stephane Nicoll
 * @author Sebastien Deleuze
 * @since 6.0
 */
class RequestMappingReflectiveProcessor implements ReflectiveProcessor {

	private final BindingReflectionHintsRegistrar bindingRegistrar = new BindingReflectionHintsRegistrar();

	@Override
	public void registerReflectionHints(ReflectionHints hints, AnnotatedElement element) {
		if (element instanceof Class<?> type) {
			registerTypeHints(hints, type);
		}
		else if (element instanceof Method method) {
			registerMethodHints(hints, method);
		}
	}

	protected void registerTypeHints(ReflectionHints hints, Class<?> type) {
		hints.registerType(type, hint -> {});
	}

	protected void registerMethodHints(ReflectionHints hints, Method method) {
		hints.registerMethod(method, hint -> hint.setModes(ExecutableMode.INVOKE));
		registerParameterHints(hints, method);
		registerReturnValueHints(hints, method);
	}

	protected void registerParameterHints(ReflectionHints hints, Method method) {
		hints.registerMethod(method, hint -> hint.setModes(ExecutableMode.INVOKE));
		for (Parameter parameter : method.getParameters()) {
			MethodParameter methodParameter = MethodParameter.forParameter(parameter);
			if (methodParameter.hasParameterAnnotation(RequestBody.class) ||
					methodParameter.hasParameterAnnotation(ModelAttribute.class)) {
				this.bindingRegistrar.registerReflectionHints(hints, methodParameter.getGenericParameterType());
			}
			else if (HttpEntity.class.isAssignableFrom(methodParameter.getParameterType())) {
				this.bindingRegistrar.registerReflectionHints(hints, getHttpEntityType(methodParameter));
			}
		}
	}

	protected void registerReturnValueHints(ReflectionHints hints, Method method) {
		MethodParameter returnType = MethodParameter.forExecutable(method, -1);
		if (AnnotatedElementUtils.hasAnnotation(returnType.getContainingClass(), ResponseBody.class) ||
				returnType.hasMethodAnnotation(ResponseBody.class)) {
			this.bindingRegistrar.registerReflectionHints(hints, returnType.getGenericParameterType());
		}
		else if (HttpEntity.class.isAssignableFrom(returnType.getParameterType())) {
			this.bindingRegistrar.registerReflectionHints(hints, getHttpEntityType(returnType));
		}
	}

	@Nullable
	protected Type getHttpEntityType(MethodParameter parameter) {
		MethodParameter nestedParameter = parameter.nested();
		return (nestedParameter.getNestedParameterType() == nestedParameter.getParameterType() ? null : nestedParameter.getNestedParameterType());
	}

}

相关信息

spring 源码目录

相关文章

spring ControllerAdvice 源码

spring CookieValue 源码

spring CrossOrigin 源码

spring DeleteMapping 源码

spring ExceptionHandler 源码

spring GetMapping 源码

spring InitBinder 源码

spring Mapping 源码

spring MatrixVariable 源码

spring ModelAttribute 源码

0  赞