‘liusuyi’
2023-12-05 745d5b90be7d8cdb8873b18d18b286fdc4b6913b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ard.utils.netty.config;
 
import lombok.Data;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
 
/**
 * @Description:
 * @ClassName: NettyTcpConfiguration
 * @Author: 刘苏义
 * @Date: 2023年12月05日9:14:16
 **/
@Configuration
@Data
@ConfigurationProperties(prefix = "netty.tcp")
public class NettyTcpConfiguration {
    Boolean enabled;
}