forked from lh39/spring-redis-transaction-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpringRedisTransactionExampleApplication.java
78 lines (72 loc) · 3.39 KB
/
SpringRedisTransactionExampleApplication.java
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
67
68
69
70
71
72
73
74
75
76
77
78
package de.lh39.springredistransactionexample;
import de.lh39.springredistransactionexample.component.TestComponent;
import de.lh39.springredistransactionexample.component.TestComponentFactory;
import de.lh39.springredistransactionexample.domain.Pet;
import de.lh39.springredistransactionexample.domain.PetType;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;
/**
* Entry point with tests.
*
* @author lh39
*/
@SpringBootApplication
public class SpringRedisTransactionExampleApplication {
public static void main(String[] args) {
SpringApplication.run(SpringRedisTransactionExampleApplication.class, args);
}
@Bean
public CommandLineRunner commandLineRunner(ApplicationContext ctx) {
return args -> {
printSpaces();
System.out.println("###################################################################");
System.out.println("TESTING TRANSACTIONAL BLOCK WITHIN FACTORY CREATED DOMAIN COMPONENT");
System.out.println("###################################################################");
Pet pet = new Pet("Croco", PetType.ALIGATOR);
TestComponentFactory testComponentFactory = ctx.getBean(TestComponentFactory.class);
TestComponent testComponent = testComponentFactory.create(pet);
testComponent.printAllPets();
try {
testComponent.testTransactional();
} catch (Exception exception) {
System.out.println("Exception caught: " + exception.getMessage());
}
testComponent.printAllPets();
testComponent.cleanUp();
System.out.println("###################################################################");
System.out.println("------------------------ TESTING FINISHED -------------------------");
System.out.println("###################################################################");
printSpaces();
};
}
@Bean
public CommandLineRunner commandLineRunne2r(ApplicationContext ctx) {
return args -> {
printSpaces();
System.out.println("#######################################################################");
System.out.println("TESTING NON TRANSACTIONAL BLOCK WITHIN FACTORY CREATED DOMAIN COMPONENT");
System.out.println("#######################################################################");
Pet pet = new Pet("Vitta", PetType.DINOSAUR);
TestComponentFactory testComponentFactory = ctx.getBean(TestComponentFactory.class);
TestComponent testComponent = testComponentFactory.create(pet);
testComponent.printAllPets();
try {
testComponent.testNonTransactional();
} catch (Exception exception) {
System.out.println("Exception caught: " + exception.getMessage());
}
testComponent.printAllPets();
testComponent.cleanUp();
System.out.println("#######################################################################");
System.out.println("-------------------------- TESTING FINISHED ---------------------------");
System.out.println("#######################################################################");
printSpaces();
};
}
private void printSpaces() {
System.out.print(System.lineSeparator() + System.lineSeparator() + System.lineSeparator());
}
}