All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.wu.framework.easy.upsert.config.PulsarConfig Maven / Gradle / Ivy

package com.wu.framework.easy.upsert.config;

import com.wu.framework.easy.upsert.autoconfigure.config.SpringBootPulsarConfigProperties;
import org.apache.pulsar.client.api.PulsarClient;
import org.apache.pulsar.client.api.PulsarClientException;
import org.springframework.boot.autoconfigure.condition.ConditionalOnBean;
import org.springframework.context.annotation.Bean;

@ConditionalOnBean(SpringBootPulsarConfigProperties.class)
public class PulsarConfig {

    @Bean
    public PulsarClient pulsarClient(SpringBootPulsarConfigProperties springBootPulsarConfigProperties) throws PulsarClientException {
        return PulsarClient.builder().serviceUrl("pulsar://" + springBootPulsarConfigProperties.getUrl()).build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy