寻找下一个调试步骤。我正在使用Hibernate和Spring Boot,我的ddl设置为try {
// Wait for connection,
connectionSocket = serverSocket.accept();
} catch (SocketException e) {
// How to identify the "Socket closed" exception?
// ...
} catch (IOException e) {
e.printStackTrace();
}
(我意识到hibernate设置是多余的,但我只是想确定):
update
application.properties
我刚刚添加了一个成功创建的新实体。但是当添加一个额外的字段spring.jpa.generate-ddl=true
spring.jpa.hibernate.ddl-auto=update
hibernate.hbm2ddl.auto=update
时,没有任何东西可以尝试添加它:
profileImageURI2
是否有任何其他配置可以控制现有表的修改?用户还拥有数据库的所有权限。