基本上我想要做的就是添加該屬性變化冬眠,所以我可以使複合材料/嵌入對象的實例化時,其所有屬性值都爲空:如何編輯Spring-Boot項目中的Hibernate設置?
hibernate.create_empty_composites.enabled
我知道,通常的辦法Hibernate的編輯是在application.properties文件中像這樣:
################################################################################
# JPA MANAGEMENT #
################################################################################
spring.jpa.hibernate.naming.physical-strategy=org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl
spring.jpa.properties.hibernate.enable_lazy_load_no_trans=true...
...
spring.jpa.properties.hibernate.create_empty_composites.enabled=true
但spring.jpa.properties.hibernate.create_empty_composites.enabled=true
不工作。我不確定Spring是否不承認某些屬性,或者它只是放錯位置。
我想知道的是,如果有另一種方式直接編輯Hibernate屬性,或者如果有另一個修復程序。
相關問題:[我可以使嵌入式Hibernate實體不可爲空嗎?](https://stackoverflow.com/questions/1324266/)。 –