We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在application.yml中配置 jpa: database: mysql hibernate: ddl-auto: update show-sql: true 实体类中 @Entity public class OrderDetail implements Serializable { @Id private String detailId; /** * 订单id */ @Column private String orderId;
jpa: database: mysql hibernate: ddl-auto: update show-sql: true
@Entity public class OrderDetail implements Serializable { @Id private String detailId; /** * 订单id */ @Column private String orderId;
上面这种实现后方便操作不需要建表 创建一个库就行 我已经将修改过的代码提交的我的库里 希望可以相互学习一下
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在application.yml中配置
jpa: database: mysql hibernate: ddl-auto: update show-sql: true
实体类中
@Entity public class OrderDetail implements Serializable { @Id private String detailId; /** * 订单id */ @Column private String orderId;
上面这种实现后方便操作不需要建表 创建一个库就行 我已经将修改过的代码提交的我的库里 希望可以相互学习一下
The text was updated successfully, but these errors were encountered: