|
@@ -0,0 +1,61 @@
|
|
|
+/*
|
|
|
+ * Copyright (c) 2018-2025, lengleng All rights reserved.
|
|
|
+ *
|
|
|
+ * Redistribution and use in source and binary forms, with or without
|
|
|
+ * modification, are permitted provided that the following conditions are met:
|
|
|
+ *
|
|
|
+ * Redistributions of source code must retain the above copyright notice,
|
|
|
+ * this list of conditions and the following disclaimer.
|
|
|
+ * Redistributions in binary form must reproduce the above copyright
|
|
|
+ * notice, this list of conditions and the following disclaimer in the
|
|
|
+ * documentation and/or other materials provided with the distribution.
|
|
|
+ * Neither the name of the pig4cloud.com developer nor the names of its
|
|
|
+ * contributors may be used to endorse or promote products derived from
|
|
|
+ * this software without specific prior written permission.
|
|
|
+ * Author: lengleng (wangiegie@gmail.com)
|
|
|
+ */
|
|
|
+
|
|
|
+package com.pig4cloud.pigx.common.security.component;
|
|
|
+
|
|
|
+import com.pig4cloud.pigx.common.core.constant.SecurityConstants;
|
|
|
+import com.pig4cloud.pigx.common.security.annotation.EnablePigxResourceServer;
|
|
|
+import lombok.extern.slf4j.Slf4j;
|
|
|
+import org.springframework.beans.MutablePropertyValues;
|
|
|
+import org.springframework.beans.factory.support.BeanDefinitionRegistry;
|
|
|
+import org.springframework.beans.factory.support.GenericBeanDefinition;
|
|
|
+import org.springframework.context.annotation.ImportBeanDefinitionRegistrar;
|
|
|
+import org.springframework.core.type.AnnotationMetadata;
|
|
|
+
|
|
|
+import java.util.Map;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @author lengleng
|
|
|
+ * @date 2018-11-24
|
|
|
+ */
|
|
|
+@Slf4j
|
|
|
+public class PigxSecurityBeanDefinitionRegistrar implements ImportBeanDefinitionRegistrar {
|
|
|
+ /**
|
|
|
+ * 根据注解值动态注入资源服务器的相关属性
|
|
|
+ *
|
|
|
+ * @param metadata 注解信息
|
|
|
+ * @param registry 注册器
|
|
|
+ */
|
|
|
+ @Override
|
|
|
+ public void registerBeanDefinitions(AnnotationMetadata metadata, BeanDefinitionRegistry registry) {
|
|
|
+ if (registry.isBeanNameInUse(SecurityConstants.RESOURCE_SERVER_CONFIGURER)) {
|
|
|
+ log.warn("本地存在资源服务器配置,覆盖默认配置:" + SecurityConstants.RESOURCE_SERVER_CONFIGURER);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ GenericBeanDefinition beanDefinition = new GenericBeanDefinition();
|
|
|
+ beanDefinition.setBeanClass(PigxResourceServerConfigurerAdapter.class);
|
|
|
+ MutablePropertyValues mpv = new MutablePropertyValues();
|
|
|
+ Map<String, Object> annotationAttributes = metadata.getAnnotationAttributes(
|
|
|
+ EnablePigxResourceServer.class.getName());
|
|
|
+ Object details = annotationAttributes.get("details");
|
|
|
+ mpv.add("details", details);
|
|
|
+ beanDefinition.setPropertyValues(mpv);
|
|
|
+ registry.registerBeanDefinition(SecurityConstants.RESOURCE_SERVER_CONFIGURER, beanDefinition);
|
|
|
+
|
|
|
+ }
|
|
|
+}
|