skip to Main Content

Hibernate transaction with mysql

On hight loaded service periodically I see a deadlock in DB ------------------------ LATEST DETECTED DEADLOCK ------------------------ 2023-03-06 22:48:18 0x7fa6a24af700 *** (1) TRANSACTION: TRANSACTION 209985062, ACTIVE 2 sec starting index read mysql tables in use 1, locked 1 LOCK WAIT 2…

VIEW QUESTION

Mysql – Springboot not creating database tables

i created my entity in springboot import jakarta.persistence.Entity; import jakarta.persistence.GeneratedValue; import jakarta.persistence.GenerationType; import jakarta.persistence.Table; @Table(name="users") @Entity public class User { @Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Long id; private String username; private String email; } i setted the database configuration in…

VIEW QUESTION
Back To Top
Search