forked from hazelcast/hazelcast-jet-code-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
application-context-with-schema.xml
66 lines (58 loc) · 2.62 KB
/
application-context-with-schema.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2008-2019, Hazelcast, Inc. All Rights Reserved.
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:jet="http://www.hazelcast.com/schema/jet-spring"
xmlns:hz="http://www.hazelcast.com/schema/spring"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.hazelcast.com/schema/spring
http://www.hazelcast.com/schema/spring/hazelcast-spring-3.12.xsd
http://www.hazelcast.com/schema/jet-spring
http://www.hazelcast.com/schema/jet-spring/hazelcast-jet-spring-3.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd">
<context:component-scan base-package="jet.spring"/>
<jet:instance id="instance">
<hz:config>
<!-- below line is necessary to enable @SpringAware annotation -->
<hz:spring-aware/>
<hz:group name="jet" password="jet-pass"/>
<hz:network port="5701" port-auto-increment="false">
<hz:join>
<hz:multicast enabled="false"/>
<hz:tcp-ip enabled="true">
<hz:member>127.0.0.1:5701</hz:member>
</hz:tcp-ip>
</hz:join>
</hz:network>
<hz:map name="map" backup-count="3">
</hz:map>
</hz:config>
<jet:instance-config cooperative-thread-Count="2"/>
<jet:default-edge-config queue-size="2048"/>
<jet:properties>
<hz:property name="myKey">myValue</hz:property>
</jet:properties>
</jet:instance>
<jet:client id="client" depends-on="instance">
<jet:group name="jet"/>
</jet:client>
<jet:map instance-ref="instance" name="my-map" id="my-map-bean"/>
<jet:list instance-ref="client" name="my-list" id="my-list-bean"/>
</beans>