Giter Site home page Giter Site logo

pulsar-spring-boot-starter's Introduction

概览

Pulsar SpringBoot版本实现,支持通过注解方式创建Producer和Consumer,支持自定义消息处理方式(已实现消息失败重试)

快速开始

1.安装JDK17

https://www.oracle.com/java/technologies/javase/jdk17-archive-downloads.html

2.安装Pulsar

https://pulsar.apache.org/docs/3.1.x/getting-started-standalone/

3.增加Maven依赖

    <dependency>
        <groupId>com.ahxinin</groupId>
        <artifactId>pulsar-spring-boot-start</artifactId>
        <version>1.0.0-SNAPSHOT</version>
    </dependency>

4.定义Message Object

@Data
public class TranslateMessage implements Serializable {
    private String taskId;
}

5.定义Producer

@Component
@PulsarProducer(topic = "${pulsar.topic.task}")
public class TranslateProducer extends PulsarProducerMessage<TranslateMessage> {

    @Override
    public void send(TranslateMessage message) throws PulsarClientException {
        super.send(message);
    }
}

6.定义Consumer

@Slf4j
@Component
@PulsarConsumer(topic = "${pulsar.topic.task}", subscription = "${pulsar.subscription.task}")
public class TranslateConsumer extends PulsarConsumerMessage<TranslateMessage> {

    @Override
    public void handel(TranslateMessage message) {
        log.info("receive message:{}", message.getTaskId());
    }
}

pulsar-spring-boot-starter's People

Contributors

ahxinin avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.