Search in sources :

Example 1 with ServiceBean

use of org.apache.dubbo.config.spring.ServiceBean in project incubator-dubbo-spring-boot-project by apache.

the class DubboServicesMetadata method services.

public Map<String, Map<String, Object>> services() {
    Map<String, ServiceBean> serviceBeansMap = getServiceBeansMap();
    Map<String, Map<String, Object>> servicesMetadata = new LinkedHashMap<>(serviceBeansMap.size());
    for (Map.Entry<String, ServiceBean> entry : serviceBeansMap.entrySet()) {
        String serviceBeanName = entry.getKey();
        ServiceBean serviceBean = entry.getValue();
        Map<String, Object> serviceBeanMetadata = resolveBeanMetadata(serviceBean);
        Object service = resolveServiceBean(serviceBeanName, serviceBean);
        if (service != null) {
            // Add Service implementation class
            serviceBeanMetadata.put("serviceClass", service.getClass().getName());
        }
        servicesMetadata.put(serviceBeanName, serviceBeanMetadata);
    }
    return servicesMetadata;
}
Also used : ServiceBean(org.apache.dubbo.config.spring.ServiceBean) LinkedHashMap(java.util.LinkedHashMap) Map(java.util.Map) LinkedHashMap(java.util.LinkedHashMap)

Example 2 with ServiceBean

use of org.apache.dubbo.config.spring.ServiceBean in project dubbo by alibaba.

the class DubboServicesMetadata method services.

public Map<String, Map<String, Object>> services() {
    Map<String, ServiceBean> serviceBeansMap = getServiceBeansMap();
    Map<String, Map<String, Object>> servicesMetadata = new LinkedHashMap<>(serviceBeansMap.size());
    for (Map.Entry<String, ServiceBean> entry : serviceBeansMap.entrySet()) {
        String serviceBeanName = entry.getKey();
        ServiceBean serviceBean = entry.getValue();
        Map<String, Object> serviceBeanMetadata = resolveBeanMetadata(serviceBean);
        Object service = resolveServiceBean(serviceBeanName, serviceBean);
        if (service != null) {
            // Add Service implementation class
            serviceBeanMetadata.put("serviceClass", service.getClass().getName());
        }
        servicesMetadata.put(serviceBeanName, serviceBeanMetadata);
    }
    return servicesMetadata;
}
Also used : ServiceBean(org.apache.dubbo.config.spring.ServiceBean) LinkedHashMap(java.util.LinkedHashMap) Map(java.util.Map) LinkedHashMap(java.util.LinkedHashMap)

Example 3 with ServiceBean

use of org.apache.dubbo.config.spring.ServiceBean in project dubbo by alibaba.

the class ServiceClassPostProcessorTest method testDubboServiceParameter.

/**
 * Test if the {@link DubboService#parameters()} works well
 * see issue: https://github.com/apache/dubbo/issues/3072
 */
@Test
public void testDubboServiceParameter() {
    /**
     * get the {@link ServiceBean} of {@link org.apache.dubbo.config.spring.context.annotation.provider.DefaultHelloService}
     */
    ServiceBean serviceBean = beanFactory.getBean("ServiceBean:org.apache.dubbo.config.spring.api.HelloService", ServiceBean.class);
    Assertions.assertNotNull(serviceBean);
    Assertions.assertNotNull(serviceBean.getParameters());
    Assertions.assertTrue(serviceBean.getParameters().size() == 1);
    Assertions.assertEquals(serviceBean.toUrl().getParameter("sayHello.timeout"), "3000");
}
Also used : ServiceBean(org.apache.dubbo.config.spring.ServiceBean) Test(org.junit.jupiter.api.Test)

Example 4 with ServiceBean

use of org.apache.dubbo.config.spring.ServiceBean in project dubbo by alibaba.

the class DubboBeanDefinitionParser method parse.

@SuppressWarnings("unchecked")
private static RootBeanDefinition parse(Element element, ParserContext parserContext, Class<?> beanClass, boolean required) {
    RootBeanDefinition beanDefinition = new RootBeanDefinition();
    beanDefinition.setBeanClass(beanClass);
    beanDefinition.setLazyInit(false);
    String id = resolveAttribute(element, "id", parserContext);
    if (StringUtils.isEmpty(id) && required) {
        String generatedBeanName = resolveAttribute(element, "name", parserContext);
        if (StringUtils.isEmpty(generatedBeanName)) {
            if (ProtocolConfig.class.equals(beanClass)) {
                generatedBeanName = "dubbo";
            } else {
                generatedBeanName = resolveAttribute(element, "interface", parserContext);
            }
        }
        if (StringUtils.isEmpty(generatedBeanName)) {
            generatedBeanName = beanClass.getName();
        }
        id = generatedBeanName;
        int counter = 2;
        while (parserContext.getRegistry().containsBeanDefinition(id)) {
            id = generatedBeanName + (counter++);
        }
    }
    if (StringUtils.isNotEmpty(id)) {
        if (parserContext.getRegistry().containsBeanDefinition(id)) {
            throw new IllegalStateException("Duplicate spring bean id " + id);
        }
        parserContext.getRegistry().registerBeanDefinition(id, beanDefinition);
        beanDefinition.getPropertyValues().addPropertyValue("id", id);
    }
    if (ProtocolConfig.class.equals(beanClass)) {
        for (String name : parserContext.getRegistry().getBeanDefinitionNames()) {
            BeanDefinition definition = parserContext.getRegistry().getBeanDefinition(name);
            PropertyValue property = definition.getPropertyValues().getPropertyValue("protocol");
            if (property != null) {
                Object value = property.getValue();
                if (value instanceof ProtocolConfig && id.equals(((ProtocolConfig) value).getName())) {
                    definition.getPropertyValues().addPropertyValue("protocol", new RuntimeBeanReference(id));
                }
            }
        }
    } else if (ServiceBean.class.equals(beanClass)) {
        String className = resolveAttribute(element, "class", parserContext);
        if (StringUtils.isNotEmpty(className)) {
            RootBeanDefinition classDefinition = new RootBeanDefinition();
            classDefinition.setBeanClass(ReflectUtils.forName(className));
            classDefinition.setLazyInit(false);
            parseProperties(element.getChildNodes(), classDefinition, parserContext);
            beanDefinition.getPropertyValues().addPropertyValue("ref", new BeanDefinitionHolder(classDefinition, id + "Impl"));
        }
    } else if (ProviderConfig.class.equals(beanClass)) {
        parseNested(element, parserContext, ServiceBean.class, true, "service", "provider", id, beanDefinition);
    } else if (ConsumerConfig.class.equals(beanClass)) {
        parseNested(element, parserContext, ReferenceBean.class, false, "reference", "consumer", id, beanDefinition);
    }
    Set<String> props = new HashSet<>();
    ManagedMap parameters = null;
    for (Method setter : beanClass.getMethods()) {
        String name = setter.getName();
        if (name.length() > 3 && name.startsWith("set") && Modifier.isPublic(setter.getModifiers()) && setter.getParameterTypes().length == 1) {
            Class<?> type = setter.getParameterTypes()[0];
            String beanProperty = name.substring(3, 4).toLowerCase() + name.substring(4);
            String property = StringUtils.camelToSplitName(beanProperty, "-");
            props.add(property);
            // check the setter/getter whether match
            Method getter = null;
            try {
                getter = beanClass.getMethod("get" + name.substring(3), new Class<?>[0]);
            } catch (NoSuchMethodException e) {
                try {
                    getter = beanClass.getMethod("is" + name.substring(3), new Class<?>[0]);
                } catch (NoSuchMethodException e2) {
                // ignore, there is no need any log here since some class implement the interface: EnvironmentAware,
                // ApplicationAware, etc. They only have setter method, otherwise will cause the error log during application start up.
                }
            }
            if (getter == null || !Modifier.isPublic(getter.getModifiers()) || !type.equals(getter.getReturnType())) {
                continue;
            }
            if ("parameters".equals(property)) {
                parameters = parseParameters(element.getChildNodes(), beanDefinition, parserContext);
            } else if ("methods".equals(property)) {
                parseMethods(id, element.getChildNodes(), beanDefinition, parserContext);
            } else if ("arguments".equals(property)) {
                parseArguments(id, element.getChildNodes(), beanDefinition, parserContext);
            } else {
                String value = resolveAttribute(element, property, parserContext);
                if (value != null) {
                    value = value.trim();
                    if (value.length() > 0) {
                        if ("registry".equals(property) && RegistryConfig.NO_AVAILABLE.equalsIgnoreCase(value)) {
                            RegistryConfig registryConfig = new RegistryConfig();
                            registryConfig.setAddress(RegistryConfig.NO_AVAILABLE);
                            beanDefinition.getPropertyValues().addPropertyValue(beanProperty, registryConfig);
                        } else if ("provider".equals(property) || "registry".equals(property) || ("protocol".equals(property) && AbstractServiceConfig.class.isAssignableFrom(beanClass))) {
                            /**
                             * For 'provider' 'protocol' 'registry', keep literal value (should be id/name) and set the value to 'registryIds' 'providerIds' protocolIds'
                             * The following process should make sure each id refers to the corresponding instance, here's how to find the instance for different use cases:
                             * 1. Spring, check existing bean by id, see{@link ServiceBean#afterPropertiesSet()}; then try to use id to find configs defined in remote Config Center
                             * 2. API, directly use id to find configs defined in remote Config Center; if all config instances are defined locally, please use {@link ServiceConfig#setRegistries(List)}
                             */
                            beanDefinition.getPropertyValues().addPropertyValue(beanProperty + "Ids", value);
                        } else {
                            Object reference;
                            if (isPrimitive(type)) {
                                if ("async".equals(property) && "false".equals(value) || "timeout".equals(property) && "0".equals(value) || "delay".equals(property) && "0".equals(value) || "version".equals(property) && "0.0.0".equals(value) || "stat".equals(property) && "-1".equals(value) || "reliable".equals(property) && "false".equals(value)) {
                                    // backward compatibility for the default value in old version's xsd
                                    value = null;
                                }
                                reference = value;
                            } else if (ONRETURN.equals(property) || ONTHROW.equals(property) || ONINVOKE.equals(property)) {
                                int index = value.lastIndexOf(".");
                                String ref = value.substring(0, index);
                                String method = value.substring(index + 1);
                                reference = new RuntimeBeanReference(ref);
                                beanDefinition.getPropertyValues().addPropertyValue(property + METHOD, method);
                            } else {
                                if ("ref".equals(property) && parserContext.getRegistry().containsBeanDefinition(value)) {
                                    BeanDefinition refBean = parserContext.getRegistry().getBeanDefinition(value);
                                    if (!refBean.isSingleton()) {
                                        throw new IllegalStateException("The exported service ref " + value + " must be singleton! Please set the " + value + " bean scope to singleton, eg: <bean id=\"" + value + "\" scope=\"singleton\" ...>");
                                    }
                                }
                                reference = new RuntimeBeanReference(value);
                            }
                            beanDefinition.getPropertyValues().addPropertyValue(beanProperty, reference);
                        }
                    }
                }
            }
        }
    }
    NamedNodeMap attributes = element.getAttributes();
    int len = attributes.getLength();
    for (int i = 0; i < len; i++) {
        Node node = attributes.item(i);
        String name = node.getLocalName();
        if (!props.contains(name)) {
            if (parameters == null) {
                parameters = new ManagedMap();
            }
            String value = node.getNodeValue();
            parameters.put(name, new TypedStringValue(value, String.class));
        }
    }
    if (parameters != null) {
        beanDefinition.getPropertyValues().addPropertyValue("parameters", parameters);
    }
    return beanDefinition;
}
Also used : RegistryConfig(org.apache.dubbo.config.RegistryConfig) NamedNodeMap(org.w3c.dom.NamedNodeMap) Node(org.w3c.dom.Node) PropertyValue(org.springframework.beans.PropertyValue) Method(java.lang.reflect.Method) RootBeanDefinition(org.springframework.beans.factory.support.RootBeanDefinition) AbstractBeanDefinition(org.springframework.beans.factory.support.AbstractBeanDefinition) BeanDefinition(org.springframework.beans.factory.config.BeanDefinition) ServiceBean(org.apache.dubbo.config.spring.ServiceBean) BeanDefinitionHolder(org.springframework.beans.factory.config.BeanDefinitionHolder) ReferenceBean(org.apache.dubbo.config.spring.ReferenceBean) RootBeanDefinition(org.springframework.beans.factory.support.RootBeanDefinition) ConsumerConfig(org.apache.dubbo.config.ConsumerConfig) TypedStringValue(org.springframework.beans.factory.config.TypedStringValue) ProtocolConfig(org.apache.dubbo.config.ProtocolConfig) RuntimeBeanReference(org.springframework.beans.factory.config.RuntimeBeanReference) ManagedMap(org.springframework.beans.factory.support.ManagedMap) HashSet(java.util.HashSet)

Example 5 with ServiceBean

use of org.apache.dubbo.config.spring.ServiceBean in project dubbo by alibaba.

the class DubboNamespaceHandlerTest method testCustomParameter.

@Test
public void testCustomParameter() {
    ClassPathXmlApplicationContext ctx = new ClassPathXmlApplicationContext(ConfigTest.class.getPackage().getName().replace('.', '/') + "/customize-parameter.xml");
    ctx.start();
    ProtocolConfig protocolConfig = ctx.getBean(ProtocolConfig.class);
    assertThat(protocolConfig.getParameters().size(), is(1));
    assertThat(protocolConfig.getParameters().get("protocol-paramA"), is("protocol-paramA"));
    ServiceBean serviceBean = ctx.getBean(ServiceBean.class);
    assertThat(serviceBean.getParameters().size(), is(1));
    assertThat(serviceBean.getParameters().get("service-paramA"), is("service-paramA"));
    ctx.close();
}
Also used : ClassPathXmlApplicationContext(org.springframework.context.support.ClassPathXmlApplicationContext) ServiceBean(org.apache.dubbo.config.spring.ServiceBean) ProtocolConfig(org.apache.dubbo.config.ProtocolConfig) Test(org.junit.jupiter.api.Test) ConfigTest(org.apache.dubbo.config.spring.ConfigTest)

Aggregations

ServiceBean (org.apache.dubbo.config.spring.ServiceBean)10 Test (org.junit.jupiter.api.Test)5 LinkedHashMap (java.util.LinkedHashMap)4 Map (java.util.Map)2 TreeMap (java.util.TreeMap)2 ProtocolConfig (org.apache.dubbo.config.ProtocolConfig)2 ConfigTest (org.apache.dubbo.config.spring.ConfigTest)2 ReferenceAnnotationBeanPostProcessor (org.apache.dubbo.config.spring.beans.factory.annotation.ReferenceAnnotationBeanPostProcessor)2 ClassPathXmlApplicationContext (org.springframework.context.support.ClassPathXmlApplicationContext)2 Method (java.lang.reflect.Method)1 HashSet (java.util.HashSet)1 ConsumerConfig (org.apache.dubbo.config.ConsumerConfig)1 RegistryConfig (org.apache.dubbo.config.RegistryConfig)1 ReferenceBean (org.apache.dubbo.config.spring.ReferenceBean)1 DemoServiceImpl (org.apache.dubbo.config.spring.impl.DemoServiceImpl)1 PropertyValue (org.springframework.beans.PropertyValue)1 BeanDefinition (org.springframework.beans.factory.config.BeanDefinition)1 BeanDefinitionHolder (org.springframework.beans.factory.config.BeanDefinitionHolder)1 RuntimeBeanReference (org.springframework.beans.factory.config.RuntimeBeanReference)1 TypedStringValue (org.springframework.beans.factory.config.TypedStringValue)1