bwcxjason

Results 2 issues of bwcxjason

### Version 1.12.38 ### Reproduction link [https://github.com/bwcxjason/cube-ui](https://github.com/bwcxjason/cube-ui) ### Steps to reproduce 打开页面,不断点击选项,尝试30左右,导致某些选项无法选中。 设备:iPhone X iOS 14.2;iPhone 11 iOS 13.7; 安卓机型没有问题。 ### What is expected? 每个选项均可选中 ### What is actually happening?...

RabbitMQ是非常流行的消息中间件,当前TIS只能支持数据库到数据库的数据同步,还不能支持到消息队列,希望后面能提供此功能。支持 AMQP协议。配置参数参考: ![image](https://user-images.githubusercontent.com/15324452/222319428-69431f85-5ba5-4c87-92c2-a520ff285d46.png) RabbitMQ的maven依赖: ``` xml com.rabbitmq amqp-client 5.14.0 ``` 连接示例代码: ``` java import com.rabbitmq.client.ConnectionFactory; import com.rabbitmq.client.Connection; import com.rabbitmq.client.Channel; public class RabbitMQExample { private final static String QUEUE_NAME = "hello";...

enhancement