I want to use lambda and stream. In build.gradle added:
jackOptions { enabled true } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } After that, the lambda begin to work, but the Cyrillic alphabet, now, is not displayed correctly. Encoding is exhibited in UTF-8 as before. I use JackSon. A Cyrillic string is returned to me from the server and I cannot work with it. And generally it is not convenient ...
