gpt4 book ai didi

java - 为什么jpa不创建表?

转载 作者:行者123 更新时间:2023-12-02 10:40:25 25 4
gpt4 key购买 nike

我的 java spring boot 项目中有一些类。我使用 jpa 和 xampp 作为本地主机。所有实体类都可以工作并为每个@Entity 类创建表。但这个类不起作用。为什么?

@AllArgsConstructor
@NoArgsConstructor
@Data
@Entity
public class Match {
@Id
private String matchId;
@Enumerated
private MatchType matchType;
}

最佳答案

试试这个:

@AllArgsConstructor
@NoArgsConstructor
@Data
@Entity
@Table(name = "\"Match"\")
public class Match {
@Id
private String matchId;
@Enumerated
private MatchType matchType;
}

更一般,如果你设置

hibernate.globally_quoted_identifiers=true

每个标识符都会被引用。

关于java - 为什么jpa不创建表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52949778/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com