Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In `@messageService/src/main/resources/application.properties` at line 11, The
application is using spring.jpa.hibernate.ddl-auto=update which allows automatic
schema mutation at runtime; change the default value to
spring.jpa.hibernate.ddl-auto=validate (or remove the property) so the app
validates the schema instead of altering it, and ensure any schema changes are
applied through your migration tooling (e.g., Flyway/Liquibase) rather than via
the ORM.
Avoid
ddl-auto=updatein default runtime config.Automatic schema mutation in shared/prod-like environments is risky; default to
validateand control schema changes via migrations.🛠️ Suggested change
📝 Committable suggestion
🤖 Prompt for AI Agents
Originally posted by @coderabbitai[bot] in #2 (comment)