如何在jHipster项目中添加表、表字段到生产中?我读了这个https://www.jhipster.tech/development/,但它是为了开发。此后产品数据库是否会更新:./mvnw -DskipTests -Pprod package 或启动后:./my-project.war 我的 pom.html 部分:<plugin> <groupId>org.liquibase</groupId> <artifactId>liquibase-maven-plugin</artifactId> <version>${liquibase.version}</version> <configuration> <changeLogFile>src/main/resources/config/liquibase/master.xml</changeLogFile> <diffChangeLogFile>src/main/resources/config/liquibase/changelog${maven.build.timestamp}_changelog.xml</diffChangeLogFile> <driver>com.mysql.jdbc.Driver</driver> <url>jdbc:mysql://localhost:3306/mydatabase_dev</url> </configuration></plugin>这是否意味着我应该更改选择我想要更新的数据库?在产品中添加字段时的操作顺序是什么?
添加回答
举报
0/150
提交
取消