7 changed files with 67 additions and 41 deletions
@ -1,12 +1,12 @@
@@ -1,12 +1,12 @@
|
||||
<hazelcast xmlns="http://www.hazelcast.com/schema/config" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://www.hazelcast.com/schema/config |
||||
http://www.hazelcast.com/schema/config/hazelcast-config-3.12.xsd"> |
||||
<instance-name>actuator-hazelcast-3</instance-name> |
||||
http://www.hazelcast.com/schema/config/hazelcast-config-4.2.xsd"> |
||||
<instance-name>actuator-hazelcast-4</instance-name> |
||||
<map name="defaultCache"/> |
||||
<network> |
||||
<join> |
||||
<tcp-ip enabled="false"/> |
||||
<auto-detection enabled="false"/> |
||||
<multicast enabled="false"/> |
||||
</join> |
||||
</network> |
||||
23
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/session/SessionAutoConfigurationHazelcast3Tests.java → spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/session/SessionAutoConfigurationHazelcast4Tests.java
23
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/session/SessionAutoConfigurationHazelcast3Tests.java → spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/session/SessionAutoConfigurationHazelcast4Tests.java
@ -0,0 +1,9 @@
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<hazelcast-client xmlns="http://www.hazelcast.com/schema/client-config" |
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
||||
xsi:schemaLocation="http://www.hazelcast.com/schema/client-config hazelcast-client-config-4.2.xsd"> |
||||
<client-labels> |
||||
<label>explicit-client</label> |
||||
</client-labels> |
||||
|
||||
</hazelcast-client> |
||||
@ -0,0 +1,12 @@
@@ -0,0 +1,12 @@
|
||||
<hazelcast |
||||
xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-4.2.xsd" |
||||
xmlns="http://www.hazelcast.com/schema/config" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
||||
<instance-name>explicit-server</instance-name> |
||||
<map name="defaultCache" /> |
||||
<network> |
||||
<join> |
||||
<auto-detection enabled="false"/> |
||||
<multicast enabled="false" /> |
||||
</join> |
||||
</network> |
||||
</hazelcast> |
||||
Loading…
Reference in new issue