Springboot 集成 Ehcache操作数据库显示SQL语句设置

Springboot 集成 Ehcache操作数据库显示SQL语句设置
在这里插入图片描述

2023-09-13 23:33:35.030  INFO 6124 --- [         task-1] o.hibernate.jpa.internal.util.LogHelper  : HHH000204: Processing PersistenceUnitInfo [name: default]
2023-09-13 23:33:35.124  INFO 6124 --- [         task-1] org.hibernate.Version                    : HHH000412: Hibernate ORM core version 5.4.20.Final
2023-09-13 23:33:35.137  WARN 6124 --- [           main] JpaBaseConfiguration$JpaWebConfiguration : spring.jpa.open-in-view is enabled by default. Therefore, database queries may be performed during view rendering. Explicitly configure spring.jpa.open-in-view to disable this warning
2023-09-13 23:33:35.380  INFO 6124 --- [         task-1] o.hibernate.annotations.common.Version   : HCANN000001: Hibernate Commons Annotations {5.1.0.Final}
2023-09-13 23:33:35.572  INFO 6124 --- [         task-1] org.hibernate.dialect.Dialect            : HHH000400: Using dialect: org.hibernate.dialect.MySQL57Dialect
2023-09-13 23:33:35.621  WARN 6124 --- [           main] ion$DefaultTemplateResolverConfiguration : Cannot find template location: classpath:/templates/ (please add some templates or check your Thymeleaf configuration)
2023-09-13 23:33:35.819  INFO 6124 --- [           main] o.s.b.w.embedded.tomcat.TomcatWebServer  : Tomcat started on port(s): 8081 (http) with context path '/ehcache'
2023-09-13 23:33:35.821  INFO 6124 --- [           main] DeferredRepositoryInitializationListener : Triggering deferred initialization of Spring Data repositories…
2023-09-13 23:33:36.410  INFO 6124 --- [         task-1] o.h.e.t.j.p.i.JtaPlatformInitiator       : HHH000490: Using JtaPlatform implementation: [org.hibernate.engine.transaction.jta.platform.internal.NoJtaPlatform]
2023-09-13 23:33:36.420  INFO 6124 --- [         task-1] j.LocalContainerEntityManagerFactoryBean : Initialized JPA EntityManagerFactory for persistence unit 'default'
2023-09-13 23:33:36.670  INFO 6124 --- [           main] DeferredRepositoryInitializationListener : Spring Data repositories initialized!
2023-09-13 23:33:36.681  INFO 6124 --- [           main] org.bc.device.EhcacheApplication         : Started EhcacheApplication in 6.344 seconds (JVM running for 7.048)
2023-09-13 23:33:42.253  INFO 6124 --- [nio-8081-exec-1] o.a.c.c.C.[.[localhost].[/ehcache]       : Initializing Spring DispatcherServlet 'dispatcherServlet'
2023-09-13 23:33:42.254  INFO 6124 --- [nio-8081-exec-1] o.s.web.servlet.DispatcherServlet        : Initializing Servlet 'dispatcherServlet'
2023-09-13 23:33:42.264  INFO 6124 --- [nio-8081-exec-1] o.s.web.servlet.DispatcherServlet        : Completed initialization in 10 ms
2023-09-13 23:33:42.305  INFO 6124 --- [nio-8081-exec-1] o.b.d.controller.EmployeeController      : findAll请求时间:2023-09-13T23:33:42.305664100
2023-09-13 23:33:42.310  INFO 6124 --- [nio-8081-exec-1] org.bc.device.config.EhcacheConfig       : ehcache key str: org.bc.device.service.EmployeeService:findAll
2023-09-13 23:33:42.312  INFO 6124 --- [nio-8081-exec-1] org.bc.device.config.EhcacheConfig       : ehcache key md5DigestAsHex: 363a29df59ef3a5e8c7fbae68bbdb213
2023-09-13 23:33:42.314  INFO 6124 --- [nio-8081-exec-1] org.bc.device.config.EhcacheConfig       : ehcache key str: org.bc.device.service.EmployeeService:findAll
2023-09-13 23:33:42.314  INFO 6124 --- [nio-8081-exec-1] org.bc.device.config.EhcacheConfig       : ehcache key md5DigestAsHex: 363a29df59ef3a5e8c7fbae68bbdb213
2023-09-13 23:33:42.323  INFO 6124 --- [nio-8081-exec-1] org.bc.device.service.EmployeeService    : findAll查询数据库
Hibernate: selecttbinfemplo0_.id as id1_0_,tbinfemplo0_.age as age2_0_,tbinfemplo0_.department as departme3_0_,tbinfemplo0_.hire_date as hire_dat4_0_,tbinfemplo0_.emp_name as emp_name5_0_,tbinfemplo0_.salary as salary6_0_ fromtb_inf_employee tbinfemplo0_
2023-09-13 23:33:42.590  INFO 6124 --- [nio-8081-exec-1] o.b.d.controller.EmployeeController      : findAll返回结果:[TbInfEmployee(id=1, name=1, age=1, salary=1.0, department=1, hireDate=2023-09-13), TbInfEmployee(id=2, name=1, age=1, salary=1.0, department=1, hireDate=2023-09-13), TbInfEmployee(id=3, name=1, age=1, salary=1.0, department=1, hireDate=2023-09-13), TbInfEmployee(id=4, name=1, age=1, salary=1.0, department=1, hireDate=2023-09-13), TbInfEmployee(id=5, name=1, age=1, salary=1.0, department=1, hireDate=2023-09-13), TbInfEmployee(id=6, name=1, age=1, salary=11.0, department=1, hireDate=2023-09-13)]
2023-09-13 23:33:42.613  INFO 6124 --- [nio-8081-exec-1] o.b.d.controller.EmployeeController      : findAll返回时间:2023-09-13T23:33:42.613281300
server:port: 8081servlet:context-path: /ehcachespring:datasource:driver-class-name: com.mysql.cj.jdbc.Drivertype: com.alibaba.druid.pool.DruidDataSourceusername: rootpassword: url: jdbc:mysql://127.0.0.1:3306/test_ehcache?characterEncoding=utf8&useUnicode=true&useSSL=false&zeroDateTimeBehavior=convertToNull&autoReconnect=true&allowMultiQueries=true&failOverReadOnly=false&connectTimeout=6000&maxReconnects=5initialSize: 5minIdle: 5maxActive: 20cache:type: ehcacheehcache:config: classpath:/ehcache.xmljpa:properties:hibernate:format_sql: trueshow_sql: true

配置如下:
jpa:
properties:
hibernate:
format_sql: true
show_sql: true

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/108332.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

linux安装nacos2.2.0

1、使用docker拉取镜像:docker pull nacos/nacos-server:v2.2.0 2、下载官方配置文件:https://github.com/alibaba/nacos/releases 3、修改配置文件的数据库连接信息,修改完成后将配置文件移至挂载目录/home/shixp/docker/nacos/conf&#xf…

PHP8中删除数组中的重复元素-PHP8知识详解

在 php 8 中,你可以使用array_unique()函数来删除数组中的重复元素。该函数将返回一个新的数组,其中包含原始数组中的唯一元素,而重复的元素只保留第一个出现的。 array_unique()函数返回具有唯一性元素的数组,语法格式如下&#…

Microsoft Excel 101 简介

什么是 Microsoft Excel? Microsoft Excel 是一个电子表格程序,用于记录和分析数值数据。 将电子表格想像成构成表格的列和行的集合。 字母通常分配给列,数字通常分配给行。 列和行相交的点称为像元。 单元格的地址由代表列的字母和代表行的…

Rsync远程同步inotify监控

Rsync 简介 rsync(Remote Sync,远程同步) 是一个开源的快速备份工具,可以在不同主机之间镜像同步整个目录树,支持增量备份,并保持链接和权限 在远程同步任务中,负责发起rsync同步操作的客户机…

《向量数据库指南》——“插件版”向量数据库与Milvus Cloud原生向量数据库之间的区别?

我一直坚持一个观点,即并非所有基于向量的解决方案都应被统称为向量数据库,尽管它们的能力在某些方面可以与之匹敌。从我的观点来看,例如 pgvector 或 Elasticsearch,它们都是非常出色且成熟的产品,在特定场景下&#…

计算机网络的故事——确认访问用户身份的认证

确认访问用户身份的认证 HTTP使用的认证方式:BASIC认证(基本认证)、DIGEST(摘要认证)、SSL客户端认证、FormBase认证(基于表单认证)。 基于表单的认证:涉及到session管理以及cookie…

Redis——Java中的客户端和API

Java客户端 在大多数的业务实现中,我们还是使用编码去操作Redis,对于命令的学习只是知道这些数据库可以做什么操作,以及在后面学习到了Java的API之后知道什么方法对应什么命令即可。 官方推荐的Java的客户端网页链接如下: 爪哇…

2023/9/13 -- C++/QT

作业&#xff1a; 1> 将之前定义的栈类和队列类都实现成模板类 栈&#xff1a; #include <iostream> #define MAX 40 using namespace std;template <typename T> class Stack{ private:T *data;int top; public:Stack();~Stack();Stack(const Stack &ot…

uniapp 触底加载

方式一 onReachBottomDistance 缺点&#xff1a;需要整个页面滑动&#xff0c;局部滑动触发不了 { // pages.json // 路由下增加 onReachBottomDistance "path": "detailed/detailed","style": {"navigationBarTitleText": "收…

【实战详解】如何快速搭建接口自动化测试框架?Python + Requests

摘要&#xff1a; 本文主要介绍如何使用Python语言和Requests库进行接口自动化测试&#xff0c;并提供详细的代码示例和操作步骤。希望能对读者有所启发和帮助。 前言 随着移动互联网的快速发展&#xff0c;越来越多的应用程序采用Web API&#xff08;也称为RESTful API&…

WebDAV之π-Disk派盘 + BubbleUPnP

BubbleUPnP是一款功能强大的Android播放器,支持UPnP/DLNA多屏互动。它可以将手机内容投屏到电视大屏上,与家人和朋友一起共享。此外,BubbleUPnP还提供了丰富的音乐和影视资源,您可以在线搜索并播放喜欢的内容。 以下是BubbleUPnP的一些主要特点: 1. 支持Chromecast和转码…

算法:贪心---跳一跳

1、题目&#xff1a; 给你一个非负整数数组 nums &#xff0c;你最初位于数组的 第一个下标 。数组中的每个元素代表你在该位置可以跳跃的最大长度。 判断你是否能够到达最后一个下标&#xff0c;如果可以&#xff0c;返回 true &#xff1b;否则&#xff0c;返回 false 。 2…