in tablestore-java-mcp-server/src/main/java/com/alicloud/openservices/tablestore/sample/service/TablestoreService.java [324:333]
public void close() throws IOException {
log.info("closing tablestore client");
if (client != null) {
try {
client.shutdown();
} catch (Exception e) {
log.error("failed to shutdown tablestore client", e);
}
}
}