python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
can i controll the @Valid, @Transactional order in the web tier
@RestController
public class GoodsController {
@Autowired
private GoodsDao goodsDao;
@Autowired
private GoodsService goodsService;
@PostMapping("test1")
@Transactio...
smileis2333
Votes: 0
Answers: 0
Caused by: java.sql.SQLException: Connection not established : Getting this error while processing more than 1k records
I am working on a spring boot application, which is processing more than 1k json messages in parallel and updating the database simultaneously with the respective fields.
Max 20 threads are running in...
m23
Votes: 0
Answers: 1
Spring Transactional Multithreading Issue
I'm working on Payment Services, then I have an issue with the product's stock deduction during the payment process. I haven't figured out how I will do this for monolithic apps and distributed apps.
...
Halil Ural
Votes: 0
Answers: 1
Fetch join with @Transactional doesnt load their relational entities
I have 2 entities, Team and Member, which are related by 1:N.
// Team.java
@Getter
@NoArgsConstructor
@Entity
public class Team {
@Id
@Column(name = "TEAM_ID")
@GeneratedValue(s...
shoukou-lee
Votes: 0
Answers: 1