Skip to content

Commit

Permalink
Merge ad893c4 into 287f3ed
Browse files Browse the repository at this point in the history
  • Loading branch information
RongtongJin committed Feb 19, 2020
2 parents 287f3ed + ad893c4 commit 56e19d6
Show file tree
Hide file tree
Showing 10 changed files with 68 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -22,7 +22,7 @@ This project aims to help developers quickly integrate [RocketMQ](http://rocketm
- [x] Filter messages using the tag or sql92 expression
- [x] Suport message tracing
- [x] Support authentication and authorization
- [ ] Support request-reply message exchange pattern
- [x] Support request-reply message exchange pattern

## Prerequisites
- JDK 1.8 and above
Expand Down
4 changes: 2 additions & 2 deletions rocketmq-spring-boot-samples/pom.xml
Expand Up @@ -24,7 +24,7 @@
<groupId>org.apache.rocketmq</groupId>
<artifactId>rocketmq-spring-boot-samples</artifactId>
<packaging>pom</packaging>
<version>0.0.1-SNAPSHOT</version>
<version>2.1.1-SNAPSHOT</version>

<name>RocketMQ Spring Boot Samples</name>
<description>Samples for RocketMQ Spring Boot</description>
Expand All @@ -38,7 +38,7 @@
</modules>

<properties>
<rocketmq-spring-boot-starter-version>2.1.0-SNAPSHOT</rocketmq-spring-boot-starter-version>
<rocketmq-spring-boot-starter-version>2.1.0</rocketmq-spring-boot-starter-version>
</properties>

<dependencies>
Expand Down
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.apache.rocketmq</groupId>
<artifactId>rocketmq-spring-boot-samples</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>2.1.1-SNAPSHOT</version>
</parent>

<artifactId>rocketmq-consume-acl-demo</artifactId>
Expand Down
@@ -1,3 +1,19 @@
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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
#
# http://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.


spring.application.name=rocketmq-consume-acl-demo

rocketmq.name-server=Endpoint_of_Aliware_MQ
Expand Down
2 changes: 1 addition & 1 deletion rocketmq-spring-boot-samples/rocketmq-consume-demo/pom.xml
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.apache.rocketmq</groupId>
<artifactId>rocketmq-spring-boot-samples</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>2.1.1-SNAPSHOT</version>
</parent>

<artifactId>rocketmq-consume-demo</artifactId>
Expand Down
@@ -1,3 +1,18 @@
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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
#
# http://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.

spring.application.name=rocketmq-consume-demo

rocketmq.name-server=localhost:9876
Expand Down
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.apache.rocketmq</groupId>
<artifactId>rocketmq-spring-boot-samples</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>2.1.1-SNAPSHOT</version>
</parent>

<artifactId>rocketmq-produce-acl-demo</artifactId>
Expand Down
@@ -1,3 +1,18 @@
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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
#
# http://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.

rocketmq.name-server=Endpoint_of_Aliware_MQ
rocketmq.producer.group=my-group1
rocketmq.producer.access-key=AK
Expand Down
2 changes: 1 addition & 1 deletion rocketmq-spring-boot-samples/rocketmq-produce-demo/pom.xml
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>org.apache.rocketmq</groupId>
<artifactId>rocketmq-spring-boot-samples</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>2.1.1-SNAPSHOT</version>
</parent>

<artifactId>rocketmq-produce-demo</artifactId>
Expand Down
@@ -1,3 +1,18 @@
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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
#
# http://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.

rocketmq.name-server=localhost:9876
rocketmq.producer.group=my-group1
rocketmq.producer.sendMessageTimeout=300000
Expand Down

0 comments on commit 56e19d6

Please sign in to comment.