Restrict members in Hazelcast cluster
问题 I am working on a spring boot project where i am using Hazelcast as Cache. I have enabled tcp as join method and i also mentioned some members. The members are able to join. But the problem is other nodes are also able to join apart from the members. can anyone tell me how i can restrict it? This is my configuration, @Bean public Config hazelcastConfig() { Config config = new Config() .setClusterName("myCluster"); List<String> members = new ArrayList<>(); members.add("192.168.99.1:5523");