[트러블 슈팅] 엔티티 이름을 User로 지으면 안되는 이유와 해결 방법 (H2 버전 2.x.x)
·
백엔드/백엔드
코드@Entity@Getter @Setterpublic class User { @Id @GeneratedValue @Column(name = "user_id") private Long userId; @Column(name = "user_name") private String userName;} 발생한 오류Caused by: org.h2.jdbc.JdbcSQLSyntaxErrorException: Syntax error in SQL statement "\000a create table [*]user (\000a user_id bigint not null,\000a user_name varchar(255),\000a primary key ..