org.pf4j.spring.boot.ext.ExtendedExtensionsInjector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-pf4j2 Show documentation
Show all versions of spring-boot-starter-pf4j2 Show documentation
Spring Boot Starter For Pf4j 2.x
/*
* Copyright (c) 2018, vindell (https://github.com/vindell).
*
* 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
*
* http://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.pf4j.spring.boot.ext;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.Map;
import java.util.Set;
import org.pf4j.PluginManager;
import org.pf4j.spring.ExtensionsInjector;
import org.pf4j.spring.boot.ext.utils.InjectorUtils;
import org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor;
import org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory;
import org.springframework.core.MethodIntrospector;
import org.springframework.util.ClassUtils;
import org.springframework.util.MultiValueMap;
import org.springframework.util.PathMatcher;
import org.springframework.util.ReflectionUtils;
import org.springframework.web.method.HandlerMethod;
import org.springframework.web.servlet.mvc.condition.PatternsRequestCondition;
import org.springframework.web.servlet.mvc.method.RequestMappingInfo;
import org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMapping;
/**
* TODO
* @author : vindell
*/
public class ExtendedExtensionsInjector extends ExtensionsInjector {
// RequestMappingHandlerMapping
protected static Method detectHandlerMethodsMethod = ReflectionUtils.findMethod(RequestMappingHandlerMapping.class,
"detectHandlerMethods", Object.class);
protected static Method getMappingForMethodMethod = ReflectionUtils.findMethod(RequestMappingHandlerMapping.class,
"getMappingForMethod", Method.class, Class.class);
protected static Field mappingRegistryField = ReflectionUtils.findField(RequestMappingHandlerMapping.class,
"mappingRegistry");
protected static Field injectionMetadataCacheField = ReflectionUtils
.findField(AutowiredAnnotationBeanPostProcessor.class, "injectionMetadataCache");
static {
detectHandlerMethodsMethod.setAccessible(true);
getMappingForMethodMethod.setAccessible(true);
mappingRegistryField.setAccessible(true);
injectionMetadataCacheField.setAccessible(true);
}
protected RequestMappingHandlerMapping requestMappingHandlerMapping;
public ExtendedExtensionsInjector(PluginManager pluginManager, AbstractAutowireCapableBeanFactory beanFactory) {
super(pluginManager, beanFactory);
this.requestMappingHandlerMapping = beanFactory.getBean(RequestMappingHandlerMapping.class);
}
/**
* Register an extension as bean.
* Current implementation register extension as singleton using {@code beanFactory.registerSingleton()}.
* The extension instance is created using {@code pluginManager.getExtensionFactory().create(extensionClass)}.
* The bean name is the extension class name.
* Override this method if you wish other register strategy.
*/
@Override
protected void registerExtension(Class> extensionClass) {
Object extension = pluginManager.getExtensionFactory().create(extensionClass);
if(!InjectorUtils.isInjectNecessary(extension)) {
return;
}
String beanName = InjectorUtils.getBeanName(extension, extension.getClass().getName());
// 判断对象是否是Controller
if (InjectorUtils.isController(extension)) {
// 1、如果RequestMapping存在则移除
removeRequestMappingIfNecessary(beanName);
// 2、注册新的Controller
beanFactory.registerSingleton(beanName, extension);
// 3、注册新的RequestMapping
registerRequestMappingIfNecessary(beanName);
} else {
beanFactory.registerSingleton(beanName, extension);
}
}
@SuppressWarnings("unchecked")
protected void removeRequestMappingIfNecessary(String controllerBeanName) {
if (!beanFactory.containsBean(controllerBeanName)) {
return;
}
// remove old
Class> handlerType = beanFactory.getType(controllerBeanName);
final Class> userType = ClassUtils.getUserClass(handlerType);
/*
* Map handlerMethods =
* requestMappingHandlerMapping.getHandlerMethods(); 返回只读集合:
* 特别说明:因requestMappingHandlerMapping.getHandlerMethods()方法获取到的结果是只读集合,
* 不能进行移除操作,所以需要采用反射方式获取目标对象
*/
Object mappingRegistry = ReflectionUtils.getField(mappingRegistryField, requestMappingHandlerMapping);
Method getMappingsMethod = ReflectionUtils.findMethod(mappingRegistry.getClass(), "getMappings");
getMappingsMethod.setAccessible(true);
Map handlerMethods = (Map) ReflectionUtils
.invokeMethod(getMappingsMethod, mappingRegistry);
/*
* 查找URL映射:解决 Ambiguous handler methods mapped for HTTP path “” 问题
*/
Field urlLookupField = ReflectionUtils.findField(mappingRegistry.getClass(), "urlLookup");
urlLookupField.setAccessible(true);
MultiValueMap urlMapping = (MultiValueMap) ReflectionUtils
.getField(urlLookupField, mappingRegistry);
final RequestMappingHandlerMapping innerRequestMappingHandlerMapping = requestMappingHandlerMapping;
Set methods = MethodIntrospector.selectMethods(userType, new ReflectionUtils.MethodFilter() {
@Override
public boolean matches(Method method) {
return ReflectionUtils.invokeMethod(getMappingForMethodMethod, innerRequestMappingHandlerMapping,
method, userType) != null;
}
});
for (Method method : methods) {
RequestMappingInfo requestMappingInfo = (RequestMappingInfo) ReflectionUtils
.invokeMethod(getMappingForMethodMethod, requestMappingHandlerMapping, method, userType);
handlerMethods.remove(requestMappingInfo);
PatternsRequestCondition patternsCondition = requestMappingInfo.getPatternsCondition();
Set patterns = patternsCondition.getPatterns();
// (Set)
// ReflectionUtils.invokeMethod(getMappingPathPatternsMethod,
// requestMappingHandlerMapping, mapping);
PathMatcher pathMatcher = requestMappingHandlerMapping.getPathMatcher();
// (PathMatcher) ReflectionUtils.invokeMethod(getPathMatcherMethod,
// requestMappingHandlerMapping);
for (String pattern : patterns) {
if (!pathMatcher.isPattern(pattern)) {
urlMapping.remove(pattern);
}
}
}
}
protected void registerRequestMappingIfNecessary(String controllerBeanName) {
RequestMappingHandlerMapping requestMappingHandlerMapping = getRequestMappingHandlerMapping();
// spring 3.1 开始
ReflectionUtils.invokeMethod(detectHandlerMethodsMethod, requestMappingHandlerMapping, controllerBeanName);
}
protected RequestMappingHandlerMapping getRequestMappingHandlerMapping() {
try {
if (requestMappingHandlerMapping != null) {
return requestMappingHandlerMapping;
}
return beanFactory.getBean(RequestMappingHandlerMapping.class);
} catch (Exception e) {
throw new IllegalArgumentException("applicationContext must has RequestMappingHandlerMapping");
}
}
}