text:(连接池链接更改)

master
zhang xu 2024-05-16 22:37:53 +08:00
parent 699ee9521e
commit 2a4df57dd0
5 changed files with 64 additions and 1 deletions

View File

@ -19,7 +19,6 @@
</properties>
<dependencies>
<dependency>
<groupId>com.muyu</groupId>
<artifactId>muyu-modules-system</artifactId>

View File

@ -108,6 +108,10 @@
<groupId>com.muyu</groupId>
<artifactId>muyu-common-system</artifactId>
</dependency>
<dependency>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
</dependency>
</dependencies>

View File

@ -0,0 +1,10 @@
package com.muyu.etl.consumer;
/**
* @ClassDescription:
* @JdkVersion: 17
* @Author: zhangxu
* @Created: 2024/5/16 15:02
*/
public class Consumer_SimpleQueue {
}

View File

@ -0,0 +1,31 @@
package com.muyu.etl.mapper;
import com.muyu.etl.domain.req.BrandReq;
import org.apache.ibatis.annotations.Mapper;
import java.util.List;
/**
* @ClassDescription:
* @JdkVersion: 17
* @Author: zhangxu
* @Created: 2024/5/16 20:55
*/
@Mapper
public interface BrandMapper {
public List<BrandReq> getBrandList(BrandReq brandReq);
int update();
int insert();
int delete(BrandReq brandReq);
int deleteAll(Long[] ids);
}

View File

@ -0,0 +1,19 @@
package com.muyu.etl.produce;
/**
* @ClassDescription:
* @JdkVersion: 17
* @Author: zhangxu
* @Created: 2024/5/16 15:01
*/
public class Producer_SimpleQueue {
private final static String QUEUE_NAME = "simple_queue";
public static void main(String[] args) {
//获取连接及mq通道
}
}