File tree 4 files changed +28
-4
lines changed
embedded-database-spring-test/src/main/java/io/zonky/test/db
4 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 40
40
import org .springframework .aop .framework .ProxyFactory ;
41
41
import org .springframework .aop .support .NameMatchMethodPointcutAdvisor ;
42
42
import org .springframework .beans .factory .config .BeanPostProcessor ;
43
+ import org .springframework .core .Ordered ;
43
44
44
45
import java .util .Arrays ;
45
46
import java .util .Collection ;
59
60
60
61
import static com .google .common .base .Preconditions .checkState ;
61
62
62
- public class FlywayDatabaseExtension implements BeanPostProcessor {
63
+ public class FlywayDatabaseExtension implements BeanPostProcessor , Ordered {
63
64
64
65
private static final FlywayVersion flywayVersion = FlywayClassUtils .getFlywayVersion ();
65
66
@@ -68,6 +69,11 @@ public class FlywayDatabaseExtension implements BeanPostProcessor {
68
69
protected final Multimap <DatabaseContext , Flyway > flywayBeans = HashMultimap .create ();
69
70
protected final BlockingQueue <FlywayOperation > pendingOperations = new LinkedBlockingQueue <>();
70
71
72
+ @ Override
73
+ public int getOrder () {
74
+ return Ordered .HIGHEST_PRECEDENCE + 1 ;
75
+ }
76
+
71
77
@ Override
72
78
public Object postProcessBeforeInitialization (Object bean , String beanName ) {
73
79
if (bean instanceof AopInfrastructureBean ) {
Original file line number Diff line number Diff line change 3
3
import org .springframework .beans .BeansException ;
4
4
import org .springframework .beans .factory .config .BeanPostProcessor ;
5
5
import org .springframework .boot .autoconfigure .flyway .FlywayProperties ;
6
+ import org .springframework .core .Ordered ;
6
7
7
- public class FlywayPropertiesPostProcessor implements BeanPostProcessor {
8
+ public class FlywayPropertiesPostProcessor implements BeanPostProcessor , Ordered {
9
+
10
+ @ Override
11
+ public int getOrder () {
12
+ return Ordered .LOWEST_PRECEDENCE - 1 ;
13
+ }
8
14
9
15
@ Override
10
16
public Object postProcessBeforeInitialization (Object bean , String beanName ) throws BeansException {
Original file line number Diff line number Diff line change 28
28
import org .springframework .aop .framework .ProxyFactory ;
29
29
import org .springframework .aop .support .NameMatchMethodPointcutAdvisor ;
30
30
import org .springframework .beans .factory .config .BeanPostProcessor ;
31
+ import org .springframework .core .Ordered ;
31
32
32
33
import static com .google .common .base .Preconditions .checkState ;
33
34
34
- public class LiquibaseDatabaseExtension implements BeanPostProcessor {
35
+ public class LiquibaseDatabaseExtension implements BeanPostProcessor , Ordered {
36
+
37
+ @ Override
38
+ public int getOrder () {
39
+ return Ordered .HIGHEST_PRECEDENCE + 1 ;
40
+ }
35
41
36
42
@ Override
37
43
public Object postProcessBeforeInitialization (Object bean , String beanName ) {
Original file line number Diff line number Diff line change 19
19
import org .springframework .beans .BeansException ;
20
20
import org .springframework .beans .factory .config .BeanPostProcessor ;
21
21
import org .springframework .boot .autoconfigure .liquibase .LiquibaseProperties ;
22
+ import org .springframework .core .Ordered ;
22
23
23
- public class LiquibasePropertiesPostProcessor implements BeanPostProcessor {
24
+ public class LiquibasePropertiesPostProcessor implements BeanPostProcessor , Ordered {
25
+
26
+ @ Override
27
+ public int getOrder () {
28
+ return Ordered .LOWEST_PRECEDENCE - 1 ;
29
+ }
24
30
25
31
@ Override
26
32
public Object postProcessBeforeInitialization (Object bean , String beanName ) throws BeansException {
You can’t perform that action at this time.
0 commit comments