У меня есть программа весенней загрузки с данными jpa mysql.
Запрос MySQL печатается как
Hibernate: select usertype0_.id as id1_9_0_, usertype0_.alias as alias2_9_0_, usertype0_.appid as appid3_9_0_, usertype0_.created as
created4_9_0_, usertype0_.description as descript5_9_0_, usertype0_.status as status6_9_0_, usertype0_.title as title7_9_0_, usertype0_.updated as
updated8_9_0_ from usertype usertype0_ where usertype0_.id=?
Есть ли какая-либо конфигурация для получения четкого запроса в консоли без динамического псевдонима, такого какниже?
Hibernate: select usertype.id as id, usertype.alias as alias, usertype.appid as appid, usertype.created as created, usertype.description as description, usertype.status as status, usertype.title as title, usertype.updated as updated from usertype usertype where usertype.id=?