Я включил свойства в своем файле springboot application.properties, но все еще не могу увидеть код sql на консоли.Ниже приведены свойства, которые я пробовал
spring.jpa.show-sql=true
spring.h2.console.enabled=true
spring.jpa.properties.hibernate.show_sql=true
spring.jpa.properties.hibernate.use_sql_comments=true
spring.jpa.properties.hibernate.format_sql=true
spring.jpa.properties.hibernate.type=trace
spring.h2.console.settings.trace=true
spring.jpa.properties.h2.show_sql=true
Даже после использования всего этого я могу видеть только оператор создания таблицы, неспособный увидеть любой запрос вставки в консоли
обмен удаленной таблицы, если существует Hibernate:
create table exchange (
id integer not null,
conversion_multiple decimal(19,2),
currency_from varchar(255),
port integer not null,
currency_to varchar(255),
primary key (id)
)
Однако данные правильно вставлены в базу данных.
ниже приведен журнал, который я вижу в консоли
drop table exchange if exists
Hibernate:
create table exchange (
id integer not null,
conversion_multiple decimal(19,2),
currency_from varchar(255),
port integer not null,
currency_to varchar(255),
primary key (id)
)