Skip to content

Commit 0de9f8d

Browse files
committed
Fix bean init order.
1 parent 34c2b84 commit 0de9f8d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/se/citerus/dddsample/config/DDDSampleApplicationContext.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,19 @@ public class DDDSampleApplicationContext {
4040
VoyageRepository voyageRepository;
4141

4242
@Autowired
43-
RoutingService routingService;
43+
GraphTraversalService graphTraversalService;
4444

4545
@Autowired
46-
HandlingEventRepository handlingEventRepository;
46+
RoutingService routingService;
4747

4848
@Autowired
4949
HandlingEventFactory handlingEventFactory;
5050

5151
@Autowired
52-
ApplicationEvents applicationEvents;
52+
HandlingEventRepository handlingEventRepository;
5353

5454
@Autowired
55-
GraphTraversalService graphTraversalService;
55+
ApplicationEvents applicationEvents;
5656

5757
@Autowired
5858
PlatformTransactionManager platformTransactionManager;

0 commit comments

Comments
 (0)