in tablestore-java-mcp-server-rag/tablestore-mcp-server/src/main/java/com/alicloud/openservices/tablestore/sample/service/TablestoreService.java [410:419]
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);
}
}
}