使用spring-boot-starter-data-jpa 怎么配置使运行时输出SQL语句
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用spring-boot-starter-data-jpa 怎么配置使运行时输出SQL语句相关的知识,希望对你有一定的参考价值。
参考技术A 如下:创建可以独立运行的 Spring 应用。
直接嵌入 Tomcat 或 Jetty 服务器,不需要部署 WAR 文件。
提供推荐的基础 POM 文件来简化 Apache Maven 配置。
尽可能的根据项目依赖来自动配置 Spring 框架。
提供可以直接在生产环境中使用的功能,如性能指标、应用信息和应用健康检查。
没有代码生成,也没有 XML 配置文件。本回答被提问者采纳 参考技术B 在application.properties 中加以下配置:
spring.jpa.show-sql=true
spring.jpa.properties.hibernate.format_sql=true 参考技术C
在 application.properties 中加入以下配置
spring.jpa.show-sql=true
spring:datasource:
url: jdbc:mysql://127.0.0.1:3306/test?characterEncoding=utf8
driverClassName: com.mysql.jdbc.Driver
username: root
password: root
jpa:
database: MySQL
show-sql: true #显示sql语句
properties:
hibernate.format_sql: true #格式化sql语句
hibernate:
naming_strategy: org.hibernate.cfg.ImprovedNamingStrategy
以上是关于使用spring-boot-starter-data-jpa 怎么配置使运行时输出SQL语句的主要内容,如果未能解决你的问题,请参考以下文章
在使用加载数据流步骤的猪中,使用(使用 PigStorage)和不使用它有啥区别?