fix(quarkus-327): add quarkus.hibernate-orm.mapping.format.global=ignore
Some checks failed
CI/CD Lions Pipeline / Build + Push + Deploy (push) Failing after 10s
Some checks failed
CI/CD Lions Pipeline / Build + Push + Deploy (push) Failing after 10s
Quarkus 3.27.x enforce une séparation entre le FormatMapper REST (quarkus.jackson.*) et celui utilisé pour les colonnes JSON en BDD. Sans 'format.global=ignore', Quarkus bloque le démarrage si write-dates-as-timestamps=false (ce qui est notre cas). Solution recommandée par la migration guide Quarkus : opt-in au futur défaut 'ignore' → BuiltinFormatMapperBehaviour ne bloque plus le démarrage.
This commit is contained in:
@@ -115,6 +115,8 @@ quarkus.datasource.devservices.enabled=false
|
|||||||
# Hibernate ORM (prod : Flyway gère le schéma ; dev/test surchargent)
|
# Hibernate ORM (prod : Flyway gère le schéma ; dev/test surchargent)
|
||||||
quarkus.hibernate-orm.database.generation=none
|
quarkus.hibernate-orm.database.generation=none
|
||||||
quarkus.hibernate-orm.log.sql=false
|
quarkus.hibernate-orm.log.sql=false
|
||||||
|
# Quarkus 3.27 : opt-in au nouveau comportement par défaut (séparation REST JSON vs colonnes JSON en BDD)
|
||||||
|
quarkus.hibernate-orm.mapping.format.global=ignore
|
||||||
|
|
||||||
# ====================================================================
|
# ====================================================================
|
||||||
# Upload de fichiers (commun à tous les environnements)
|
# Upload de fichiers (commun à tous les environnements)
|
||||||
|
|||||||
Reference in New Issue
Block a user