JPA + SpringData 不能有效生成表结构的情况

Spring Boot项目的使用中,JPA是我阅读其他项目时学习的框架,当时觉得比MyBatis感觉要简便的多,容易快速开发,所以再一次选择了它。
第二次配置并没有像第一次那么顺利,我强行的将应该在application.properties里的配置转移到了application.yml中,但是事实证明,启动时会提示"xxx config coudn't find",然后改回在application.properties里的配置就好了。
一般的配置如下:

# JPA
spring.jpa.show-sql=true
spring.jpa.properties.jadira.usertype.autoRegisterUserTypes=true
spring.jpa.hibernate.ddl-auto=update
spring.jpa.hibernate.generate-ddl=true
spring.jpa.hibernate.open-in-view=true
    原文作者:AidenEcho
    原文地址: https://segmentfault.com/a/1190000020249922
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞