Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发jhipster Release 0.7.0,我想在内存数据库中添加数据。
有一种方法可以使用CSV file.
CSV file
但是我需要使用 java 来完成,所以还有其他选项可以通过使用在数据库中添加数据java classes吗?
java classes
“正常”的方法是使用 Liquibase,使用 /src/main/resources/config/liquibase 目录中的文件。
如果您想直接在 Java 中执行此操作,最简单的方法是使用 JPA,使用您的 JPA 存储库。如果您调用示例存储库之一,请查看 Spring Data JPA 提供的方法。