EN
Spring Boot 2.x - transaction with controller request
5 points
In this short article, we would like to show how to add transaction to controller request in Spring Boot in Java.
Quick solution: add
@Transactional
annottation to selected controller method.
In below example operations are rolled back on any exceptions that occured in the method.
xxxxxxxxxx
1
package com.example
2
3
import org.springframework.http.MediaType;
4
import org.springframework.stereotype.Controller;
5
import org.springframework.transaction.annotation.Transactional;
6
import org.springframework.web.bind.annotation.RequestMapping;
7
import org.springframework.web.bind.annotation.RequestMethod;
8
import org.springframework.web.bind.annotation.ResponseBody;
9
10
11
public class ExampleController {
12
13
(
14
value = "/path/to/api",
15
method = RequestMethod.GET,
16
produces = MediaType.TEXT_PLAIN_VALUE
17
)
18
19
20
public String executeSomeApi() {
21
// some code here ...
22
23
// if (operationError) {
24
// throw new SomeException("Exception message here ..."); // it rollbacks transaction
25
// }
26
27
// some code here ...
28
return "Some success response here ...";
29
}
30
}