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.
我使用 flyway 或 liquibase 来管理我的架构并在启动期间更新应用程序中的某些表。我想知道在启动期间是否有某种方法可以更新 mongodb 集合?我想向集合添加一个新字段,并为所有旧对象的该字段提供一个值
首先更新您的对象,创建存储库,然后创建一个将更新所有旧对象的函数。然后使用此参考“https://stackoverflow.com/questions/27405713/running-code-after-spring-boot-starts”调用您的函数。
对于存储库的更新和创建,您可以在 youtube 上观看教程。