Pulsar学习示例

producer

package main  

import (
	"context"
	"fmt"
	"log"

	pulsar "github.com/apache/pulsar-client-go/pulsar"
)

func main() {
	client, err := pulsar.NewClient(pulsar.ClientOptions{
		URL: "pulsar://localhost:6650",
	})

	if err != nil {
		log.Fatal(err)
	}

	defer client.Close()

	producer, err := client.CreateProducer(pulsar.ProducerOptions{
		Topic: "my-topic",
	})

	if err != nil {
		log.Fatal(err)
	}

	defer producer.Close()

	msg := &pulsar.ProducerMessage{
		Payload: []byte("Hello, Pulsar!"),
	}

	_, err = producer.Send(context.Background(), msg)
	if err != nil {
		log.Fatal(err)
	}

	fmt.Println("Message sent successfully")
}

consumer

package main

import (
	"context"
	"fmt"
	"log"

	pulsar "github.com/apache/pulsar-client-go/pulsar"
)

func main() {
	client, err := pulsar.NewClient(pulsar.ClientOptions{
		URL: "pulsar://localhost:6650",
	})

	if err != nil {
		log.Fatal(err)
	}

	defer client.Close()

	consumer, err := client.Subscribe(pulsar.ConsumerOptions{
		Topic:            "my-topic",
		SubscriptionName: "my-subscription",
		Type:             pulsar.Shared,
	})

	if err != nil {
		log.Fatal(err)
	}

	defer consumer.Close()

	msg, err := consumer.Receive(context.Background())
	if err != nil {
		log.Fatal(err)
	}

	fmt.Printf("Received message: %s\n", string(msg.Payload()))

	consumer.Ack(msg)
}

Pulsar是一个开源的分布式发布/订阅消息系统,而Spring Boot是一个快速开发应用程序的框架。在本示例中,我们将演示如何使用Pulsar和Spring Boot创建一个简单的发布/订阅消息系统。 1. 首先,我们需要添加以下依赖项到我们的Spring Boot项目中: ```xml <dependency> <groupId>org.apache.pulsar</groupId> <artifactId>pulsar-client</artifactId> <version>2.8.0</version> </dependency> ``` 2. 接下来,我们需要配置Pulsar客户端。在application.properties文件中添加以下属性: ```properties pulsar.serviceUrl=pulsar://localhost:6650 ``` 3. 接下来,我们将创建一个生产者,用于发布消息。在Spring Boot应用程序中,我们可以使用@Scheduled注释定时发布消息。在下面的代码中,我们将每秒钟发布一条消息: ```java import org.apache.pulsar.client.api.Producer; import org.apache.pulsar.client.api.PulsarClient; import org.springframework.beans.factory.annotation.Value; import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; @Component public class MessageProducer { @Value("${pulsar.topic}") private String topic; @Value("${pulsar.serviceUrl}") private String serviceUrl; @Scheduled(fixedDelay = 1000) public void produceMessage() throws Exception { PulsarClient client = PulsarClient.builder() .serviceUrl(serviceUrl) .build(); Producer<byte[]> producer = client.newProducer() .topic(topic) .create(); String message = "Hello, Pulsar!"; producer.send(message.getBytes()); producer.close(); client.close(); } } ``` 4. 最后,我们将创建一个消费者,用于订阅和接收消息。在Spring Boot应用程序中,我们可以使用@PostConstruct注释创建消费者。在下面的代码中,我们将每次接收到消息时打印消息: ```java import org.apache.pulsar.client.api.Consumer; import org.apache.pulsar.client.api.Message; import org.apache.pulsar.client.api.PulsarClient; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; import javax.annotation.PostConstruct; @Component public class MessageConsumer { @Value("${pulsar.topic}") private String topic; @Value("${pulsar.serviceUrl}") private String serviceUrl; @PostConstruct public void consumeMessage() throws Exception { PulsarClient client = PulsarClient.builder() .serviceUrl(serviceUrl) .build(); Consumer<byte[]> consumer = client.newConsumer() .topic(topic) .subscriptionName("my-subscription") .subscribe(); while (true) { Message<byte[]> message = consumer.receive(); System.out.println("Received message: " + new String(message.getData())); consumer.acknowledge(message); } } } ``` 通过以上步骤,我们已经成功创建了一个简单的Pulsar消息发布/订阅系统,并且可以在Spring Boot应用程序中使用它。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

终生成长者

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值