rocketmq example readme improve
parent
cb3b250c34
commit
84b56926cc
@ -0,0 +1,59 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||||
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||||
|
|
||||||
|
<parent>
|
||||||
|
<groupId>com.alibaba.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-alibaba-examples</artifactId>
|
||||||
|
<version>${revision}</version>
|
||||||
|
<relativePath>../../pom.xml</relativePath>
|
||||||
|
</parent>
|
||||||
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
|
|
||||||
|
<artifactId>rocketmq-tx-example</artifactId>
|
||||||
|
<name>Spring Cloud Starter Stream Alibaba RocketMQ Transaction message Example</name>
|
||||||
|
<description>Example demonstrating how to send and consume transaction messages in rocketmq</description>
|
||||||
|
<packaging>jar</packaging>
|
||||||
|
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.alibaba.cloud</groupId>
|
||||||
|
<artifactId>spring-cloud-starter-stream-rocketmq</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-web</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-starter-actuator</artifactId>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.alibaba.cloud</groupId>
|
||||||
|
<artifactId>rocketmq-example-common</artifactId>
|
||||||
|
<version>${revision}</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
<build>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||||
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-deploy-plugin</artifactId>
|
||||||
|
<version>${maven-deploy-plugin.version}</version>
|
||||||
|
<configuration>
|
||||||
|
<skip>true</skip>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</build>
|
||||||
|
|
||||||
|
</project>
|
@ -0,0 +1,74 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2013-2022 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 com.alibaba.cloud.examples.tx;
|
||||||
|
|
||||||
|
import java.util.function.Consumer;
|
||||||
|
|
||||||
|
import com.alibaba.cloud.examples.common.SimpleMsg;
|
||||||
|
import com.alibaba.cloud.stream.binder.rocketmq.constant.RocketMQConst;
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.boot.ApplicationRunner;
|
||||||
|
import org.springframework.boot.SpringApplication;
|
||||||
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
|
import org.springframework.cloud.stream.function.StreamBridge;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.messaging.Message;
|
||||||
|
import org.springframework.messaging.MessageHeaders;
|
||||||
|
import org.springframework.messaging.support.MessageBuilder;
|
||||||
|
import org.springframework.util.MimeTypeUtils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author sorie
|
||||||
|
*/
|
||||||
|
@SpringBootApplication
|
||||||
|
public class RocketMQTxApplication {
|
||||||
|
private static final Logger log = LoggerFactory
|
||||||
|
.getLogger(RocketMQTxApplication.class);
|
||||||
|
@Autowired
|
||||||
|
private StreamBridge streamBridge;
|
||||||
|
public static void main(String[] args) {
|
||||||
|
SpringApplication.run(RocketMQTxApplication.class, args);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public ApplicationRunner producer() {
|
||||||
|
return args -> {
|
||||||
|
for (int i = 1; i <= 4; i++) {
|
||||||
|
MessageBuilder builder = MessageBuilder.withPayload(new SimpleMsg("Hello Tx msg " + i));
|
||||||
|
builder.setHeader("test", String.valueOf(i))
|
||||||
|
.setHeader(MessageHeaders.CONTENT_TYPE, MimeTypeUtils.APPLICATION_JSON);
|
||||||
|
builder.setHeader(RocketMQConst.USER_TRANSACTIONAL_ARGS, "binder");
|
||||||
|
Message<SimpleMsg> msg = builder.build();
|
||||||
|
streamBridge.send("producer-out-0", msg);
|
||||||
|
System.out.println("send Msg:" + msg.toString());
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public Consumer<Message<SimpleMsg>> consumer() {
|
||||||
|
return msg -> {
|
||||||
|
Object arg = msg.getHeaders();
|
||||||
|
log.info(Thread.currentThread().getName() + " Receive New Messages: " + msg.getPayload().getMsg() + " ARG:"
|
||||||
|
+ arg.toString());
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,65 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2013-2018 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 com.alibaba.cloud.examples.tx;
|
||||||
|
|
||||||
|
import org.apache.rocketmq.client.producer.LocalTransactionState;
|
||||||
|
import org.apache.rocketmq.client.producer.TransactionListener;
|
||||||
|
import org.apache.rocketmq.common.message.Message;
|
||||||
|
import org.apache.rocketmq.common.message.MessageExt;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Component;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author <a href="mailto:fangjian0423@gmail.com">Jim</a>
|
||||||
|
*/
|
||||||
|
@Component("myTransactionListener")
|
||||||
|
public class TransactionListenerImpl implements TransactionListener {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Excute local transaction.
|
||||||
|
* @param msg messages
|
||||||
|
* @param arg message args
|
||||||
|
* @return Transaction state
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public LocalTransactionState executeLocalTransaction(Message msg, Object arg) {
|
||||||
|
Object num = msg.getProperty("test");
|
||||||
|
|
||||||
|
if ("1".equals(num)) {
|
||||||
|
System.out.println("executer: " + new String(msg.getBody()) + " unknown");
|
||||||
|
return LocalTransactionState.UNKNOW;
|
||||||
|
}
|
||||||
|
else if ("2".equals(num)) {
|
||||||
|
System.out.println("executer: " + new String(msg.getBody()) + " rollback");
|
||||||
|
return LocalTransactionState.ROLLBACK_MESSAGE;
|
||||||
|
}
|
||||||
|
System.out.println("executer: " + new String(msg.getBody()) + " commit");
|
||||||
|
return LocalTransactionState.COMMIT_MESSAGE;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MQ check back local transaction states.
|
||||||
|
* @param msg messages
|
||||||
|
* @return Transaction state
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public LocalTransactionState checkLocalTransaction(MessageExt msg) {
|
||||||
|
System.out.println("check: " + new String(msg.getBody()));
|
||||||
|
return LocalTransactionState.COMMIT_MESSAGE;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,27 @@
|
|||||||
|
server:
|
||||||
|
port: 28088
|
||||||
|
spring:
|
||||||
|
application:
|
||||||
|
name: rocketmq-tx-example
|
||||||
|
cloud:
|
||||||
|
stream:
|
||||||
|
function:
|
||||||
|
definition: consumer;
|
||||||
|
rocketmq:
|
||||||
|
binder:
|
||||||
|
name-server: localhost:9876
|
||||||
|
bindings:
|
||||||
|
producer-out-0:
|
||||||
|
producer:
|
||||||
|
group: output_1
|
||||||
|
transactionListener: myTransactionListener
|
||||||
|
producerType: Trans
|
||||||
|
bindings:
|
||||||
|
producer-out-0:
|
||||||
|
destination: tx
|
||||||
|
consumer-in-0:
|
||||||
|
destination: tx
|
||||||
|
group: tx-group
|
||||||
|
logging:
|
||||||
|
level:
|
||||||
|
org.springframework.context.support: debug
|
Loading…
Reference in New Issue