We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a46b07 commit c96f29bCopy full SHA for c96f29b
backend/src/main/java/wooteco/prolog/session/ui/TempFeedbackController.java
@@ -2,6 +2,7 @@
2
3
import lombok.AllArgsConstructor;
4
import org.springframework.context.ApplicationEventPublisher;
5
+import org.springframework.transaction.annotation.Transactional;
6
import org.springframework.web.bind.annotation.GetMapping;
7
import org.springframework.web.bind.annotation.RequestMapping;
8
import org.springframework.web.bind.annotation.RequestParam;
@@ -20,6 +21,7 @@ public class TempFeedbackController {
20
21
22
private final ApplicationEventPublisher applicationEventPublisher;
23
24
+ @Transactional
25
@GetMapping
26
public void show(
27
@RequestParam("startId") Long startId,
0 commit comments