Is it possible to put comments into Hibernate Query Language? If so, how?
Make sure your session is configured with:
<property name="hibernate.use_sql_comments">true</property>
Then do:
Query query = ...;
query.setComment("Some comment here");
and you will see something like the following in your MySQL log file (if you're using MySQL):
5998 Query /* Some comment here */ select .....
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With