最佳答案
我界定了以下实体:
@Entity
@Table(name = "EmailTemplate")
public class EmailTemplate {
尽管有表注释,我还是收到了 java.sql.SQLException: Invalid object name 'email_template'
。如何防止将 EmailTemplate 等实体类转换为 email _ template 表名?
编辑:
我使用的是 Spring Boot: start JPA,
compile("org.springframework.boot:spring-boot-starter-data-jpa")