You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know if this is a Bug or a feature request.
Describe the bug
sometimes i divide Queries into multiple lines to be more readable.
The queries that are in a single string literal are syntax highlighted but when divided into multiple string literals concatenations, then there they stop being colorized.
PS: i know that i can use text blocks, but unfortunately the project is using java 11.
To Reproduce
change something like this:
@Query("SELECT c FROM Client c JOIN c.chambres chambre WHERE chambre.id = :chambreId")
Set<Client> findByChambreId(@Param("chambreId") LongchambreId);
I don't know if this is a Bug or a feature request.
Describe the bug
sometimes i divide Queries into multiple lines to be more readable.
The queries that are in a single string literal are syntax highlighted but when divided into multiple string literals concatenations, then there they stop being colorized.
PS: i know that i can use text blocks, but unfortunately the project is using java 11.
To Reproduce
change something like this:
to this:
or this:
Sample
check the file
ClientRepository.java
in this repoThe text was updated successfully, but these errors were encountered: