top.osjf.sdk.spring.proxy.SdkProxyBean Maven / Gradle / Ivy
/*
* Copyright 2024-? 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 top.osjf.sdk.spring.proxy;
import org.springframework.beans.factory.FactoryBean;
import org.springframework.beans.factory.support.BeanDefinitionBuilder;
import top.osjf.sdk.core.client.ClientExecutors;
import top.osjf.sdk.spring.annotation.EnableSdkProxyRegister;
import top.osjf.sdk.spring.annotation.Sdk;
import top.osjf.sdk.spring.annotation.SdkProxyBeanRegister;
import top.osjf.sdk.spring.beans.ScanningCandidateImportBeanDefinitionRegistrar;
/**
* A fusion of {@link SdkJDKProxyBean} and {@link SdkCglibProxyBean} is used
* to directly call the {@link #setProxyModel(ProxyModel)} method in
* {@link BeanDefinitionBuilder#addPropertyValue(String, Object)} to
* set the current proxy model.
*
* It can be said to be a fusion point between the Spring framework and
* our custom {@link top.osjf.sdk.core.client.Client} scheme.
*
Here is an explanation of the main implementation idea: we first scan the
* interface classes wearing {@link EnableSdkProxyRegister} in
* {@link ScanningCandidateImportBeanDefinitionRegistrar} through{@link Sdk}'s
* switch annotations,and then create dynamic implementation classes for these
* interfaces through {@link SdkProxyBeanRegister}.
*
*
When these interfaces are called through the spring container, We will
* uniformly bring the parameters to the proxy object and connect them to our
* {@link ClientExecutors} processing through this class.
*
*
When setting the scope of a special bean and inheriting this class, it is
* necessary to override the constructor {@link #SdkProxyBean(Class)} and provide
* the corresponding type for setting {@link FactoryBean#getObjectType()}.
*
* @param The data type of the proxy class.
* @author zhangpengfei
* @since 1.0.0
*/
public class SdkProxyBean extends AbstractSdkProxyBean {
public SdkProxyBean(Class type) {
super(type);
}
}