Browse Source

加入rabbitmq消息队列并测试成功,彻底删除webapp

NorthLan 7 years ago
parent
commit
428a701ca6

+ 2 - 0
zen-mq/src/main/kotlin/com/gxzc/zen/mq/config/RabbitConfig.kt

@@ -5,6 +5,7 @@ import org.springframework.amqp.core.BindingBuilder
 import org.springframework.amqp.core.Queue
 import org.springframework.amqp.core.TopicExchange
 import org.springframework.context.annotation.Bean
+import org.springframework.context.annotation.Configuration
 
 /**
  *
@@ -12,6 +13,7 @@ import org.springframework.context.annotation.Bean
  * @date 2018/1/31
  * @url https://noahlan.com
  */
+@Configuration
 class RabbitConfig {
 
     @Bean

+ 1 - 1
zen-mq/src/main/resources/application-mq.yml

@@ -1,6 +1,6 @@
 spring:
   rabbitmq:
-    host: 127.0.0.1
+    host: localhost
     port: 5672
     username: admin
     password: admin

+ 6 - 6
zen-orm/src/main/resources/application-orm.yml

@@ -35,9 +35,9 @@ spring:
 datasource:
   sys:
     name: archives_sys
-    url: jdbc:mysql://192.168.1.124:3307/archives_sys?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
-    username: archives
-    password: archives
+    url: jdbc:mysql://127.0.0.1:3306/archives_sys?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
+    username: root
+    password: root
     testWhileIdle: true
     testOnBorrow: false
     testOnReturn: false
@@ -54,9 +54,9 @@ datasource:
     minEvictableIdleTimeMillis: 30000
   bus:
     name: archives_receive
-    url: jdbc:mysql://192.168.1.124:3307/archives_receive?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
-    username: archives
-    password: archives
+    url: jdbc:mysql://127.0.0.1:3306/archives_rec?useUnicode=true&characterEncoding=utf-8&useSSL=false&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC&zeroDateTimeBehavior=convertToNull
+    username: root
+    password: root
     testWhileIdle: true
     testOnBorrow: false
     testOnReturn: false

+ 1 - 1
zen-web/src/main/kotlin/com/gxzc/zen/controller/ExampleController.kt

@@ -38,7 +38,7 @@ class ExampleController {
     fun testMq() {
         for (i in 1..10) {
             sender.send("msg $i")
-            Thread.sleep(1000)
+//            Thread.sleep(1000)
         }
     }
 }

+ 0 - 16
zen-web/src/main/webapp/index.jsp

@@ -1,16 +0,0 @@
-<%--
-  Created by IntelliJ IDEA.
-  User: mgr
-  Date: 18-1-20
-  Time: 上午11:23
-  To change this template use File | Settings | File Templates.
---%>
-<%@ page contentType="text/html;charset=UTF-8" language="java" %>
-<html>
-  <head>
-    <title>$Title$</title>
-  </head>
-  <body>
-  $END$s
-  </body>
-</html>