提交 eb1578ad 编写于 作者: JEECG低代码平台's avatar JEECG低代码平台

删除jeecg-cloud-example例子模块,测试示例重构到jeecg-cloud-system-start中---

上级 90758f3b
FROM anapsix/alpine-java:8_server-jre_unlimited
MAINTAINER jeecgos@163.com
RUN ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
RUN mkdir -p /jeecg-cloud-example
WORKDIR /jeecg-cloud-example
EXPOSE 7001
ADD ./target/jeecg-cloud-example-2.4.2.jar ./
CMD java -Dfile.encoding=utf-8 -Djava.security.egd=file:/dev/./urandom -jar jeecg-cloud-example-2.4.2.jar
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>jeecg-cloud-module</artifactId>
<groupId>org.jeecgframework.boot</groupId>
<version>2.4.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>jeecg-cloud-example</artifactId>
<description>jeecg-cloud-example 微服务测试例子</description>
<dependencies>
<!-- 引入jeecg-boot-starter-cloud依赖-->
<dependency>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-boot-starter-cloud</artifactId>
</dependency>
<!-- 引入定时任务依赖 -->
<dependency>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-boot-starter-job</artifactId>
</dependency>
<!-- 引入分布式锁依赖 -->
<dependency>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-boot-starter-lock</artifactId>
</dependency>
<!--rabbitmq消息队列-->
<dependency>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-boot-starter-rabbitmq</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
</project>
\ No newline at end of file
package org.jeecg;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.scheduling.annotation.EnableScheduling;
@EnableScheduling
@EnableFeignClients(basePackages = {"org.jeecg"})
@SpringBootApplication(scanBasePackages = "org.jeecg")
public class JeecgCloudExampleApplication {
public static void main(String[] args) {
SpringApplication.run(JeecgCloudExampleApplication.class, args);
}
}
package org.jeecg.cloud.demo.rabbitmq;
import com.rabbitmq.client.Channel;
import lombok.extern.slf4j.Slf4j;
import org.jeecg.boot.starter.rabbitmq.core.BaseRabbiMqHandler;
import org.jeecg.boot.starter.rabbitmq.listenter.MqListener;
import org.jeecg.common.annotation.RabbitComponent;
import org.jeecg.common.base.BaseMap;
import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.amqp.support.AmqpHeaders;
import org.springframework.messaging.handler.annotation.Header;
@Slf4j
@RabbitComponent(value = "testListener2")
public class DemoRabbitMqListener2 extends BaseRabbiMqHandler<BaseMap> {
@RabbitListener(queues = "test2")
public void onMessage(BaseMap baseMap, Channel channel, @Header(AmqpHeaders.DELIVERY_TAG) long deliveryTag) {
super.onMessage(baseMap, deliveryTag, channel, new MqListener<BaseMap>() {
@Override
public void handler(BaseMap map, Channel channel) {
String orderId = map.get("orderId");
log.info("业务处理2:orderId:" + orderId);
}
});
}
}
package org.jeecg.cloud.demo.test.service.impl;
import org.jeecg.cloud.demo.test.service.JeecgDemoService;
import org.jeecg.common.api.vo.Result;
import org.springframework.stereotype.Service;
@Service
public class JeecgDemoServiceImpl implements JeecgDemoService {
@Override
public Result<String> getMessage(String name) {
return Result.OK("Hello" + name);
}
}
server:
port: 7003
spring:
application:
name: jeecg-cloud-example
\ No newline at end of file
...@@ -9,14 +9,9 @@ ...@@ -9,14 +9,9 @@
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<artifactId>jeecg-cloud-system-start</artifactId> <artifactId>jeecg-cloud-system-start</artifactId>
<description>jeecg-cloud-system-start基础启动模块</description> <description>System项目微服务启动</description>
<dependencies> <dependencies>
<!-- 引入jeecg-boot-module-system依赖 -->
<dependency>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-boot-module-system</artifactId>
</dependency>
<!-- 引入jeecg-boot-starter-cloud依赖 --> <!-- 引入jeecg-boot-starter-cloud依赖 -->
<dependency> <dependency>
<groupId>org.jeecgframework.boot</groupId> <groupId>org.jeecgframework.boot</groupId>
...@@ -29,6 +24,12 @@ ...@@ -29,6 +24,12 @@
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
<!-- 引入jeecg-boot-module-system依赖 -->
<dependency>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-boot-module-system</artifactId>
</dependency>
<!--rabbitmq消息队列--> <!--rabbitmq消息队列-->
<dependency> <dependency>
<groupId>org.jeecgframework.boot</groupId> <groupId>org.jeecgframework.boot</groupId>
...@@ -39,6 +40,12 @@ ...@@ -39,6 +40,12 @@
<groupId>org.jeecgframework.boot</groupId> <groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-boot-starter-job</artifactId> <artifactId>jeecg-boot-starter-job</artifactId>
</dependency> </dependency>
<!-- 分布式锁依赖 -->
<dependency>
<groupId>org.jeecgframework.boot</groupId>
<artifactId>jeecg-boot-starter-lock</artifactId>
</dependency>
</dependencies> </dependencies>
<build> <build>
......
package org.jeecg; package org.jeecg;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.apache.catalina.Context;
import org.apache.tomcat.util.scan.StandardJarScanner;
import org.jeecg.common.util.oConvertUtils; import org.jeecg.common.util.oConvertUtils;
import org.springframework.boot.SpringApplication; import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
import org.springframework.cloud.openfeign.EnableFeignClients; import org.springframework.cloud.openfeign.EnableFeignClients;
import org.springframework.context.ConfigurableApplicationContext; import org.springframework.context.ConfigurableApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.core.env.Environment; import org.springframework.core.env.Environment;
import org.springframework.scheduling.annotation.EnableScheduling;
import java.net.InetAddress; import java.net.InetAddress;
import java.net.UnknownHostException; import java.net.UnknownHostException;
...@@ -24,6 +21,7 @@ import java.net.UnknownHostException; ...@@ -24,6 +21,7 @@ import java.net.UnknownHostException;
@Slf4j @Slf4j
@SpringBootApplication @SpringBootApplication
@EnableFeignClients(basePackages = {"org.jeecg"}) @EnableFeignClients(basePackages = {"org.jeecg"})
@EnableScheduling
public class JeecgSystemCloudApplication extends SpringBootServletInitializer { public class JeecgSystemCloudApplication extends SpringBootServletInitializer {
@Override @Override
...@@ -45,4 +43,5 @@ public class JeecgSystemCloudApplication extends SpringBootServletInitializer { ...@@ -45,4 +43,5 @@ public class JeecgSystemCloudApplication extends SpringBootServletInitializer {
"----------------------------------------------------------"); "----------------------------------------------------------");
} }
} }
\ No newline at end of file
package org.jeecg.modules.cloud.constant;
/**
* 微服务单元测试常量定义
*/
public interface CloudConstant {
/**
* 微服务名【对应模块jeecg-boot-module-demo】
*/
public final static String SERVER_NAME_JEECGDEMO = "jeecg-demo";
/**
* MQ测试队列名字
*/
public final static String MQ_JEECG_PLACE_ORDER = "jeecg_place_order";
public final static String MQ_JEECG_PLACE_ORDER_TIME = "jeecg_place_order_time";
/**
* MQ测试消息总线
*/
public final static String MQ_DEMO_BUS_EVENT = "demoBusEvent";
/**
* 分布式锁lock key
*/
public final static String REDISSON_DEMO_LOCK_KEY1 = "demoLockKey1";
public final static String REDISSON_DEMO_LOCK_KEY2 = "demoLockKey2";
}
package org.jeecg.cloud.demo.bus; package org.jeecg.modules.cloud.ebus;
import cn.hutool.core.util.ObjectUtil; import cn.hutool.core.util.ObjectUtil;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.jeecg.boot.starter.rabbitmq.event.EventObj; import org.jeecg.boot.starter.rabbitmq.event.EventObj;
import org.jeecg.boot.starter.rabbitmq.event.JeecgBusEventHandler; import org.jeecg.boot.starter.rabbitmq.event.JeecgBusEventHandler;
import org.jeecg.common.base.BaseMap; import org.jeecg.common.base.BaseMap;
import org.jeecg.modules.cloud.constant.CloudConstant;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
/** /**
* 消息处理器【发布订阅】 * 消息处理器【发布订阅】
*/ */
@Slf4j @Slf4j
@Component("demoBusEvent") @Component(CloudConstant.MQ_DEMO_BUS_EVENT)
public class DemoBusEvent implements JeecgBusEventHandler { public class DemoBusEvent implements JeecgBusEventHandler {
......
package org.jeecg.modules.cloud.feign.controller; package org.jeecg.modules.cloud.feign.controller;
import cn.hutool.core.util.RandomUtil;
import io.swagger.annotations.Api; import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation; import io.swagger.annotations.ApiOperation;
import org.jeecg.boot.starter.rabbitmq.client.RabbitMqClient;
import org.jeecg.common.api.vo.Result; import org.jeecg.common.api.vo.Result;
import org.jeecg.common.base.BaseMap;
import org.jeecg.modules.cloud.constant.CloudConstant;
import org.jeecg.modules.cloud.feign.feign.JeecgTestClient; import org.jeecg.modules.cloud.feign.feign.JeecgTestClient;
import org.jeecg.modules.cloud.feign.feign.JeecgTestClient2; import org.jeecg.modules.cloud.feign.feign.JeecgTestClientDyn;
import org.jeecg.starter.cloud.feign.impl.JeecgFeignService; import org.jeecg.starter.cloud.feign.impl.JeecgFeignService;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController; import org.springframework.web.bind.annotation.RestController;
import javax.servlet.http.HttpServletRequest;
@RestController @RestController
@RequestMapping("/sys/test") @RequestMapping("/sys/test")
@Api(tags = "feign测试") @Api(tags = "【微服务】单元测试")
public class JeecgTestFeignTest { public class JeecgTestFeignController {
@Autowired @Autowired
private JeecgFeignService jeecgFeignService; private JeecgFeignService jeecgFeignService;
@Autowired @Autowired
private JeecgTestClient jeecgTestClient; private JeecgTestClient jeecgTestClient;
@Autowired
private RabbitMqClient rabbitMqClient;
@GetMapping("getMessage") @GetMapping("getMessage")
@ApiOperation(value = "测试feign", notes = "测试feign") @ApiOperation(value = "测试feign", notes = "测试feign")
...@@ -33,7 +39,23 @@ public class JeecgTestFeignTest { ...@@ -33,7 +39,23 @@ public class JeecgTestFeignTest {
@GetMapping("getMessage2") @GetMapping("getMessage2")
@ApiOperation(value = "测试动态feign", notes = "测试动态feign") @ApiOperation(value = "测试动态feign", notes = "测试动态feign")
public Result<String> getMessage2() { public Result<String> getMessage2() {
JeecgTestClient2 jeecgTestClient = jeecgFeignService.newInstance(JeecgTestClient2.class, "jeecg-demo"); JeecgTestClientDyn myClientDyn = jeecgFeignService.newInstance(JeecgTestClientDyn.class, CloudConstant.SERVER_NAME_JEECGDEMO);
return jeecgTestClient.getMessage("jeecg-boot2"); return myClientDyn.getMessage("动态fegin——jeecg-boot2");
}
@GetMapping(value = "/rabbitmq")
@ApiOperation(value = "测试rabbitmq", notes = "测试rabbitmq")
public Result<?> rabbitMqClientTest(HttpServletRequest req) {
//rabbitmq消息队列测试
BaseMap map = new BaseMap();
map.put("orderId", RandomUtil.randomNumbers(10));
rabbitMqClient.sendMessage(CloudConstant.MQ_JEECG_PLACE_ORDER, map);
rabbitMqClient.sendMessage(CloudConstant.MQ_JEECG_PLACE_ORDER_TIME, map,10);
//rabbitmq消息总线测试
BaseMap params = new BaseMap();
params.put("orderId", "123456");
rabbitMqClient.publishEvent(CloudConstant.MQ_DEMO_BUS_EVENT, params);
return Result.OK("MQ发送消息成功");
} }
} }
package org.jeecg.modules.cloud.feign.feign; package org.jeecg.modules.cloud.feign.feign;
import org.jeecg.common.api.vo.Result; import org.jeecg.common.api.vo.Result;
import org.jeecg.modules.cloud.constant.CloudConstant;
import org.jeecg.modules.cloud.feign.feign.fallback.JeecgTestClientFallback;
import org.springframework.cloud.openfeign.FeignClient; import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.GetMapping;
...@@ -9,7 +11,7 @@ import org.springframework.web.bind.annotation.RequestParam; ...@@ -9,7 +11,7 @@ import org.springframework.web.bind.annotation.RequestParam;
/** /**
* 常规feign接口定义 * 常规feign接口定义
*/ */
@FeignClient(value = "jeecg-demo", fallbackFactory = DemoFallback.class) @FeignClient(value = CloudConstant.SERVER_NAME_JEECGDEMO, fallbackFactory = JeecgTestClientFallback.class)
@Component @Component
public interface JeecgTestClient { public interface JeecgTestClient {
......
...@@ -7,7 +7,7 @@ import org.springframework.web.bind.annotation.RequestParam; ...@@ -7,7 +7,7 @@ import org.springframework.web.bind.annotation.RequestParam;
/** /**
* 动态feign接口定义 * 动态feign接口定义
*/ */
public interface JeecgTestClient2 { public interface JeecgTestClientDyn {
@GetMapping(value = "/test/getMessage") @GetMapping(value = "/test/getMessage")
Result<String> getMessage(@RequestParam("name") String name); Result<String> getMessage(@RequestParam("name") String name);
......
package org.jeecg.modules.cloud.feign.feign; package org.jeecg.modules.cloud.feign.feign.fallback;
import feign.hystrix.FallbackFactory; import feign.hystrix.FallbackFactory;
import org.jeecg.modules.cloud.feign.feign.JeecgTestClient;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
/** /**
* @author qinfeng * @author qinfeng
*/ */
@Component @Component
public class DemoFallback implements FallbackFactory<JeecgTestClient> { public class JeecgTestClientFallback implements FallbackFactory<JeecgTestClient> {
@Override @Override
public JeecgTestClient create(Throwable throwable) { public JeecgTestClient create(Throwable throwable) {
......
package org.jeecg.cloud.demo.lock; package org.jeecg.modules.cloud.lock;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.jeecg.boot.starter.lock.annotation.DistributedLock; import org.jeecg.boot.starter.lock.annotation.DistributedLock;
import org.jeecg.boot.starter.lock.client.RedissonLockClient; import org.jeecg.boot.starter.lock.client.RedissonLockClient;
import org.jeecg.boot.starter.rabbitmq.client.RabbitMqClient; import org.jeecg.boot.starter.rabbitmq.client.RabbitMqClient;
import org.jeecg.common.base.BaseMap;
import org.jeecg.modules.cloud.constant.CloudConstant;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.scheduling.annotation.Scheduled; import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
...@@ -19,43 +21,45 @@ import java.util.Map; ...@@ -19,43 +21,45 @@ import java.util.Map;
public class DemoLockTest { public class DemoLockTest {
@Autowired @Autowired
RedissonLockClient redissonLock; RedissonLockClient redissonLock;
@Autowired @Autowired
RabbitMqClient rabbitMqClient; RabbitMqClient rabbitMqClient;
/** /**
* 注解方式测试分布式锁 * 测试分布式锁【注解方式】
*/ */
//@Scheduled(cron = "0/5 * * * * ?") @Scheduled(cron = "0/5 * * * * ?")
@DistributedLock(lockKey = "redis-lock", expireSeconds = 11) @DistributedLock(lockKey = CloudConstant.REDISSON_DEMO_LOCK_KEY1)
public void execute() throws InterruptedException { public void execute() throws InterruptedException {
log.info("执行execute任务开始,休眠三秒"); log.info("执行execute任务开始,休眠三秒");
Thread.sleep(3000); Thread.sleep(3000);
System.out.println("=======================业务逻辑1============================="); System.out.println("=======================业务逻辑1=============================");
Map map = new HashMap(); Map map = new BaseMap();
map.put("orderId", "12345"); map.put("orderId", "BJ0001");
rabbitMqClient.sendMessage("test", map); rabbitMqClient.sendMessage(CloudConstant.MQ_JEECG_PLACE_ORDER, map);
//延迟10秒发送 //延迟10秒发送
map.put("orderId", "555555"); map.put("orderId", "NJ0002");
rabbitMqClient.sendMessage("test", map, 10000); rabbitMqClient.sendMessage(CloudConstant.MQ_JEECG_PLACE_ORDER, map, 10000);
log.info("execute任务结束,休眠三秒"); log.info("execute任务结束,休眠三秒");
} }
public DemoLockTest() {
}
/** /**
* 编码方式测试分布式锁 * 测试分布式锁【编码方式】
*/ */
//@Scheduled(cron = "0/10 * * * * ?") //@Scheduled(cron = "0/5 * * * * ?")
public void execute2() throws InterruptedException { public void execute2() throws InterruptedException {
if (redissonLock.tryLock("redisson", -1, 10)) { if (redissonLock.tryLock(CloudConstant.REDISSON_DEMO_LOCK_KEY2, -1, 6000)) {
log.info("执行任务execute2开始,休眠秒"); log.info("执行任务execute2开始,休眠秒");
Thread.sleep(3000); Thread.sleep(10000);
System.out.println("=======================业务逻辑2============================="); System.out.println("=======================业务逻辑2=============================");
log.info("定时execute2结束,休眠三秒"); log.info("定时execute2结束,休眠十秒");
redissonLock.unlock("redisson");
redissonLock.unlock(CloudConstant.REDISSON_DEMO_LOCK_KEY2);
} else { } else {
log.info("execute2获取锁失败"); log.info("execute2获取锁失败");
} }
} }
} }
package org.jeecg.modules.cloud.rabbitmq; package org.jeecg.modules.cloud.rabbitmq;
import com.rabbitmq.client.Channel; import com.rabbitmq.client.Channel;
import lombok.extern.slf4j.Slf4j;
import org.jeecg.boot.starter.rabbitmq.core.BaseRabbiMqHandler; import org.jeecg.boot.starter.rabbitmq.core.BaseRabbiMqHandler;
import org.jeecg.boot.starter.rabbitmq.listenter.MqListener; import org.jeecg.boot.starter.rabbitmq.listenter.MqListener;
import org.jeecg.common.annotation.RabbitComponent; import org.jeecg.common.annotation.RabbitComponent;
import org.jeecg.common.base.BaseMap; import org.jeecg.common.base.BaseMap;
import org.jeecg.modules.cloud.constant.CloudConstant;
import org.springframework.amqp.rabbit.annotation.RabbitHandler; import org.springframework.amqp.rabbit.annotation.RabbitHandler;
import org.springframework.amqp.rabbit.annotation.RabbitListener; import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.amqp.support.AmqpHeaders; import org.springframework.amqp.support.AmqpHeaders;
import org.springframework.messaging.handler.annotation.Header; import org.springframework.messaging.handler.annotation.Header;
@RabbitListener(queues = "jeecg_place_order") /**
* RabbitMq接受者1
* (@RabbitListener声明类上,一个类只能监听一个队列)
*/
@Slf4j
@RabbitListener(queues = CloudConstant.MQ_JEECG_PLACE_ORDER)
@RabbitComponent(value = "helloReceiver1") @RabbitComponent(value = "helloReceiver1")
public class HelloReceiver1 extends BaseRabbiMqHandler<BaseMap> { public class HelloReceiver1 extends BaseRabbiMqHandler<BaseMap> {
...@@ -21,7 +28,7 @@ public class HelloReceiver1 extends BaseRabbiMqHandler<BaseMap> { ...@@ -21,7 +28,7 @@ public class HelloReceiver1 extends BaseRabbiMqHandler<BaseMap> {
public void handler(BaseMap map, Channel channel) { public void handler(BaseMap map, Channel channel) {
//业务处理 //业务处理
String orderId = map.get("orderId").toString(); String orderId = map.get("orderId").toString();
System.out.println("Receiver1 : " + orderId); log.info("MQ Receiver1,orderId : " + orderId);
} }
}); });
} }
......
package org.jeecg.modules.cloud.rabbitmq; package org.jeecg.modules.cloud.rabbitmq;
import com.rabbitmq.client.Channel; import com.rabbitmq.client.Channel;
import lombok.extern.slf4j.Slf4j;
import org.jeecg.boot.starter.rabbitmq.core.BaseRabbiMqHandler; import org.jeecg.boot.starter.rabbitmq.core.BaseRabbiMqHandler;
import org.jeecg.boot.starter.rabbitmq.listenter.MqListener; import org.jeecg.boot.starter.rabbitmq.listenter.MqListener;
import org.jeecg.common.annotation.RabbitComponent; import org.jeecg.common.annotation.RabbitComponent;
import org.jeecg.common.base.BaseMap; import org.jeecg.common.base.BaseMap;
import org.jeecg.modules.cloud.constant.CloudConstant;
import org.springframework.amqp.rabbit.annotation.RabbitHandler; import org.springframework.amqp.rabbit.annotation.RabbitHandler;
import org.springframework.amqp.rabbit.annotation.RabbitListener; import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.amqp.support.AmqpHeaders; import org.springframework.amqp.support.AmqpHeaders;
import org.springframework.messaging.handler.annotation.Header; import org.springframework.messaging.handler.annotation.Header;
@RabbitListener(queues = "jeecg_place_order") /**
* RabbitMq接受者2
* (@RabbitListener声明类上,一个类只能监听一个队列)
*/
@Slf4j
@RabbitListener(queues = CloudConstant.MQ_JEECG_PLACE_ORDER)
@RabbitComponent(value = "helloReceiver2") @RabbitComponent(value = "helloReceiver2")
public class HelloReceiver2 extends BaseRabbiMqHandler<BaseMap> { public class HelloReceiver2 extends BaseRabbiMqHandler<BaseMap> {
...@@ -21,7 +28,7 @@ public class HelloReceiver2 extends BaseRabbiMqHandler<BaseMap> { ...@@ -21,7 +28,7 @@ public class HelloReceiver2 extends BaseRabbiMqHandler<BaseMap> {
public void handler(BaseMap map, Channel channel) { public void handler(BaseMap map, Channel channel) {
//业务处理 //业务处理
String orderId = map.get("orderId").toString(); String orderId = map.get("orderId").toString();
System.out.println("Receiver2 : " + orderId); log.info("MQ Receiver2,orderId : " + orderId);
} }
}); });
} }
......
package org.jeecg.cloud.demo.rabbitmq; package org.jeecg.modules.cloud.rabbitmq;
import com.rabbitmq.client.Channel; import com.rabbitmq.client.Channel;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
...@@ -6,24 +6,30 @@ import org.jeecg.boot.starter.rabbitmq.core.BaseRabbiMqHandler; ...@@ -6,24 +6,30 @@ import org.jeecg.boot.starter.rabbitmq.core.BaseRabbiMqHandler;
import org.jeecg.boot.starter.rabbitmq.listenter.MqListener; import org.jeecg.boot.starter.rabbitmq.listenter.MqListener;
import org.jeecg.common.annotation.RabbitComponent; import org.jeecg.common.annotation.RabbitComponent;
import org.jeecg.common.base.BaseMap; import org.jeecg.common.base.BaseMap;
import org.jeecg.modules.cloud.constant.CloudConstant;
import org.springframework.amqp.rabbit.annotation.RabbitHandler; import org.springframework.amqp.rabbit.annotation.RabbitHandler;
import org.springframework.amqp.rabbit.annotation.RabbitListener; import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.amqp.support.AmqpHeaders; import org.springframework.amqp.support.AmqpHeaders;
import org.springframework.messaging.handler.annotation.Header; import org.springframework.messaging.handler.annotation.Header;
/**
* RabbitMq接受者3
* (@RabbitListener声明类方法上,一个类可以多监听多个队列)
*/
@Slf4j @Slf4j
@RabbitListener(queues = "test3") @RabbitComponent(value = "helloReceiver3")
@RabbitComponent(value = "testListener3") public class HelloReceiver3 extends BaseRabbiMqHandler<BaseMap> {
public class DemoRabbitMqListener3 extends BaseRabbiMqHandler<BaseMap> {
@RabbitHandler @RabbitListener(queues = CloudConstant.MQ_JEECG_PLACE_ORDER)
public void onMessage(BaseMap baseMap, Channel channel, @Header(AmqpHeaders.DELIVERY_TAG) long deliveryTag) { public void onMessage(BaseMap baseMap, Channel channel, @Header(AmqpHeaders.DELIVERY_TAG) long deliveryTag) {
super.onMessage(baseMap, deliveryTag, channel, new MqListener<BaseMap>() { super.onMessage(baseMap, deliveryTag, channel, new MqListener<BaseMap>() {
@Override @Override
public void handler(BaseMap map, Channel channel) { public void handler(BaseMap map, Channel channel) {
//业务处理
String orderId = map.get("orderId").toString(); String orderId = map.get("orderId").toString();
log.info("业务处理3:orderId:" + orderId); log.info("MQ Receiver3,orderId : " + orderId);
} }
}); });
} }
}
}
\ No newline at end of file
package org.jeecg.modules.cloud.rabbitmq; package org.jeecg.modules.cloud.rabbitmq;
import com.rabbitmq.client.Channel; import com.rabbitmq.client.Channel;
import lombok.extern.slf4j.Slf4j;
import org.jeecg.boot.starter.rabbitmq.core.BaseRabbiMqHandler; import org.jeecg.boot.starter.rabbitmq.core.BaseRabbiMqHandler;
import org.jeecg.boot.starter.rabbitmq.listenter.MqListener; import org.jeecg.boot.starter.rabbitmq.listenter.MqListener;
import org.jeecg.common.annotation.RabbitComponent; import org.jeecg.common.annotation.RabbitComponent;
import org.jeecg.common.base.BaseMap; import org.jeecg.common.base.BaseMap;
import org.jeecg.modules.cloud.constant.CloudConstant;
import org.springframework.amqp.rabbit.annotation.RabbitHandler; import org.springframework.amqp.rabbit.annotation.RabbitHandler;
import org.springframework.amqp.rabbit.annotation.RabbitListener; import org.springframework.amqp.rabbit.annotation.RabbitListener;
import org.springframework.amqp.support.AmqpHeaders; import org.springframework.amqp.support.AmqpHeaders;
import org.springframework.messaging.handler.annotation.Header; import org.springframework.messaging.handler.annotation.Header;
@RabbitListener(queues = "jeecg_place_order_time") @Slf4j
@RabbitListener(queues = CloudConstant.MQ_JEECG_PLACE_ORDER_TIME)
@RabbitComponent(value = "helloTimeReceiver") @RabbitComponent(value = "helloTimeReceiver")
public class HelloTimeReceiver extends BaseRabbiMqHandler<BaseMap> { public class HelloTimeReceiver extends BaseRabbiMqHandler<BaseMap> {
...@@ -21,7 +24,7 @@ public class HelloTimeReceiver extends BaseRabbiMqHandler<BaseMap> { ...@@ -21,7 +24,7 @@ public class HelloTimeReceiver extends BaseRabbiMqHandler<BaseMap> {
public void handler(BaseMap map, Channel channel) { public void handler(BaseMap map, Channel channel) {
//业务处理 //业务处理
String orderId = map.get("orderId").toString(); String orderId = map.get("orderId").toString();
System.out.println("Receiver1 : " + orderId); log.info("Time Receiver1,orderId : " + orderId);
} }
}); });
} }
......
package org.jeecg.modules.cloud.xxljob;;
import com.xxl.job.core.biz.model.ReturnT;
import com.xxl.job.core.handler.annotation.XxlJob;
import com.xxl.job.core.log.XxlJobLogger;
import com.xxl.job.core.util.ShardingUtil;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
/**
* xxl-job定时任务测试
*/
@Component
@Slf4j
public class Demo2JobHandler {
/**
* 简单任务
*
* @param params
* @return
*/
@XxlJob(value = "demoJob2")
public ReturnT<String> demoJobHandler(String params) {
log.info("我是定时任务,我执行了...............................");
return ReturnT.SUCCESS;
}
/**
* 2、分片广播任务
*/
@XxlJob("shardingJobHandler3")
public ReturnT<String> shardingJobHandler(String param) throws Exception {
// 分片参数
ShardingUtil.ShardingVO shardingVO = ShardingUtil.getShardingVo();
XxlJobLogger.log("分片参数:当前分片序号 = {}, 总分片数 = {}", shardingVO.getIndex(), shardingVO.getTotal());
// 业务逻辑
for (int i = 0; i < shardingVO.getTotal(); i++) {
if (i == shardingVO.getIndex()) {
XxlJobLogger.log("第 {} 片, 命中分片开始处理", i);
} else {
XxlJobLogger.log("第 {} 片, 忽略", i);
}
}
return ReturnT.SUCCESS;
}
}
package org.jeecg.cloud.demo.job; package org.jeecg.modules.cloud.xxljob;;
import com.xxl.job.core.biz.model.ReturnT; import com.xxl.job.core.biz.model.ReturnT;
...@@ -230,5 +230,6 @@ public class DemoJobHandler { ...@@ -230,5 +230,6 @@ public class DemoJobHandler {
public void destroy() { public void destroy() {
log.info("destory"); log.info("destory");
} }
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册