Browse Source

Rabbit MQ

wfansh 5 months ago
parent
commit
fbf2c45aa3

+ 6 - 0
jeecg-module-system/jeecg-system-start/pom.xml

@@ -48,6 +48,12 @@
             <groupId>org.jeecgframework.boot</groupId>
             <artifactId>jeecg-boot-starter3-job</artifactId>
         </dependency>
+
+        <!--rabbitmq消息队列-->
+        <dependency>
+            <groupId>org.jeecgframework.boot</groupId>
+            <artifactId>jeecg-boot-starter3-rabbitmq</artifactId>
+        </dependency>
     </dependencies>
 
     <build>

+ 16 - 0
jeecg-module-system/jeecg-system-start/src/main/resources/application-dev.yml

@@ -183,6 +183,22 @@ spring:
       host: 127.0.0.1
       port: 6379
       password:
+  # rabbit mq配置
+  rabbitmq:
+    host: rabbit-mq.v3.adwebcloud.com
+    username: admin
+    password: Initial0
+    port: 5672
+    publisher-confirms: true
+    publisher-returns: true
+    virtual-host: /adweb
+    listener:
+      simple:
+        acknowledge-mode: manual
+        concurrency: 1
+        max-concurrency: 1
+        retry:
+          enabled: true
 #mybatis plus 设置
 mybatis-plus:
   mapper-locations: classpath*:org/jeecg/**/xml/*Mapper.xml

+ 16 - 0
jeecg-module-system/jeecg-system-start/src/main/resources/application-prod.yml

@@ -183,6 +183,22 @@ spring:
       host: 127.0.0.1
       port: 6379
       password: ''
+  # rabbit mq配置
+  rabbitmq:
+    host: rabbit-mq.v3.adwebcloud.com
+    username: admin
+    password: Initial0
+    port: 5672
+    publisher-confirms: true
+    publisher-returns: true
+    virtual-host: /adweb
+    listener:
+      simple:
+        acknowledge-mode: manual
+        concurrency: 1
+        max-concurrency: 1
+        retry:
+          enabled: true
 #mybatis plus 设置
 mybatis-plus:
   mapper-locations: classpath*:org/jeecg/**/xml/*Mapper.xml

+ 16 - 0
jeecg-module-system/jeecg-system-start/src/main/resources/application-test.yml

@@ -182,6 +182,22 @@ spring:
     host: 192.168.1.188
     port: 6379
     password: ''
+  # rabbit mq配置
+  rabbitmq:
+    host: rabbit-mq.v3.adwebcloud.com
+    username: admin
+    password: Initial0
+    port: 5672
+    publisher-confirms: true
+    publisher-returns: true
+    virtual-host: /adweb
+    listener:
+      simple:
+        acknowledge-mode: manual
+        concurrency: 1
+        max-concurrency: 1
+        retry:
+          enabled: true
 #mybatis plus 设置
 mybatis-plus:
   mapper-locations: classpath*:org/jeecg/**/xml/*Mapper.xml