Skip to content

Commit e7ad47f

Browse files
committed
reorder
1 parent 4a92f2e commit e7ad47f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/test/resources/tinyioc.xml

+8-8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@
88
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
99
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd">
1010

11+
<bean id="outputService" class="us.codecraft.tinyioc.OutputServiceImpl">
12+
</bean>
13+
14+
<bean id="helloWorldService" class="us.codecraft.tinyioc.HelloWorldServiceImpl">
15+
<property name="text" value="Hello World!"></property>
16+
<property name="outputService" ref="outputService"></property>
17+
</bean>
18+
1119
<bean id="timeInterceptor" class="us.codecraft.tinyioc.aop.TimerInterceptor"></bean>
1220

1321
<bean id="autoProxyCreator" class="us.codecraft.tinyioc.aop.AspectJAwareAdvisorAutoProxyCreator"></bean>
@@ -17,12 +25,4 @@
1725
<property name="expression" value="execution(* us.codecraft.tinyioc.*.*(..))"></property>
1826
</bean>
1927

20-
<bean id="outputService" class="us.codecraft.tinyioc.OutputServiceImpl">
21-
</bean>
22-
23-
<bean id="helloWorldService" class="us.codecraft.tinyioc.HelloWorldServiceImpl">
24-
<property name="text" value="Hello World!"></property>
25-
<property name="outputService" ref="outputService"></property>
26-
</bean>
27-
2828
</beans>

0 commit comments

Comments
 (0)