chore(性能测试): 修复检查kafka的时候导致的kafka日志异常

This commit is contained in:
Captain.B 2021-07-13 16:53:53 +08:00 committed by 刘瑞斌
parent 364a5b404d
commit 1eb9dd75b2
2 changed files with 5 additions and 11 deletions

View File

@ -44,7 +44,6 @@ import org.springframework.web.multipart.MultipartFile;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.io.File; import java.io.File;
import java.io.IOException; import java.io.IOException;
import java.io.OutputStream;
import java.net.InetSocketAddress; import java.net.InetSocketAddress;
import java.net.Socket; import java.net.Socket;
import java.nio.charset.StandardCharsets; import java.nio.charset.StandardCharsets;
@ -315,15 +314,11 @@ public class PerformanceTestService {
//1,建立tcp //1,建立tcp
String ip = ipAndPort[0]; String ip = ipAndPort[0];
int port = Integer.parseInt(ipAndPort[1]); int port = Integer.parseInt(ipAndPort[1]);
Socket soc = new Socket(); try (
soc.connect(new InetSocketAddress(ip, port), 1000); // 1s timeout Socket soc = new Socket();
//2.输入内容 ) {
String content = "1010"; soc.connect(new InetSocketAddress(ip, port), 1000); // 1s timeout
byte[] bs = content.getBytes(); }
OutputStream os = soc.getOutputStream();
os.write(bs);
//3.关闭
soc.close();
} }
} catch (Exception e) { } catch (Exception e) {
LogUtil.error(e.getMessage(), e); LogUtil.error(e.getMessage(), e);

View File

@ -15,7 +15,6 @@ spring.datasource.hikari.connection-test-query=SELECT 1
#kafka #kafka
spring.kafka.bootstrap-servers=${kafka.bootstrap-servers} spring.kafka.bootstrap-servers=${kafka.bootstrap-servers}
spring.kafka.consumer.group-id=metersphere_group_id spring.kafka.consumer.group-id=metersphere_group_id
spring.kafka.producer.properties.security.protocol=PLAINTEXT
# mybatis # mybatis
mybatis.configuration.cache-enabled=true mybatis.configuration.cache-enabled=true
mybatis.configuration.lazy-loading-enabled=false mybatis.configuration.lazy-loading-enabled=false