1
1
package com .aventstack .chainlp .api .project ;
2
2
3
+ import com .aventstack .chainlp .api .build .BuildService ;
4
+ import com .aventstack .chainlp .api .test .TestService ;
5
+ import jakarta .transaction .Transactional ;
3
6
import lombok .extern .slf4j .Slf4j ;
4
7
import org .springframework .beans .factory .annotation .Autowired ;
5
8
import org .springframework .cache .annotation .CacheEvict ;
6
9
import org .springframework .cache .annotation .CachePut ;
7
10
import org .springframework .cache .annotation .Cacheable ;
8
11
import org .springframework .cache .annotation .Caching ;
12
+ import org .springframework .context .annotation .Lazy ;
9
13
import org .springframework .data .domain .Page ;
10
14
import org .springframework .data .domain .Pageable ;
11
15
import org .springframework .stereotype .Service ;
@@ -19,6 +23,13 @@ public class ProjectService {
19
23
@ Autowired
20
24
private ProjectRepository repository ;
21
25
26
+ @ Autowired
27
+ private BuildService buildService ;
28
+
29
+ @ Autowired
30
+ @ Lazy
31
+ private TestService testService ;
32
+
22
33
@ Cacheable (value = "projects" , unless = "#result == null || #result.size == 0" )
23
34
public Page <Project > findAll (final Pageable pageable ) {
24
35
return repository .findAll (pageable );
@@ -53,11 +64,14 @@ public Project update(final Project project) {
53
64
return project ;
54
65
}
55
66
67
+ @ Transactional
56
68
@ Caching (evict = {
57
69
@ CacheEvict (value = "projects" , allEntries = true , condition = "#id > 0" ),
58
70
@ CacheEvict (value = "project" , key = "#id" , condition ="#id > 0" )
59
71
})
60
72
public void delete (final Integer id ) {
73
+ buildService .deleteForProject (id );
74
+ testService .deleteForProject (id );
61
75
log .info ("Deleting project with id {}" , id );
62
76
repository .deleteById (id );
63
77
log .info ("Project id: {} was deleted successfully" , id );
0 commit comments