I have in my integration test the following :
myMap.put(Language.RU, "Египет");
which is then used as parameter, however when I do I sys out in my code (that uses the string accessed via the hashmap), it looks like this :
param is : Каир%
Consequently there is no data returned, when in fact there should be when the original string is used to query the database.
I thought I was using utf-8 throughout, what could cause the problem ? Usign the technique here, everything is indeed set to UTF-8 ... ?