Skip to content

Commit 0c6ce4b

Browse files
committed
re-added missing context for testing
1 parent 1249e70 commit 0c6ce4b

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<beans
3+
xmlns="http://www.springframework.org/schema/beans"
4+
xmlns:jdbc="http://www.springframework.org/schema/jdbc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xmlns:context="http://www.springframework.org/schema/context" xmlns:tx="http://www.springframework.org/schema/tx"
6+
xmlns:p="http://www.springframework.org/schema/p"
7+
xsi:schemaLocation="http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd
8+
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
9+
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd
10+
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">
11+
12+
<bean id="memstore" class="com.bitsofproof.supernode.model.LvlMemoryStore">
13+
</bean>
14+
15+
<bean id="store" class="com.bitsofproof.supernode.model.LvlStore">
16+
<property name="store" ref="memstore"/>
17+
</bean>
18+
19+
</beans>

0 commit comments

Comments
 (0)