Spring 启动yml配置

Spring boot yml configuration

使用 Spring 引导,您可以在 application.yml 中指定以下内容来配置 jpa/hibernate 的设置:

spring:
  jpa:
    hibernate:
      ddlAuto: validate
      namingStrategy: org.hibernate.cfg.EJB3NamingStrategy
    show-sql: false

我的问题:是否有 page/doc 列出了可以在 application.yml 中定义的所有不同配置? (即它在哪里说我可以通过上面的例子配置 jpa/hibernate?)

官方文档中有一段:

http://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#common-application-properties