Results 8 comments of Ivan Sopov

Если доберетесь - есть встроенный способ обработки переименования https://maven.apache.org/guides/mini/guide-relocation.html (в примере про изменение groupId, но artifactId тоже можно в relocation указывать.

Added workaround, involving copy&pasting classes from 2.8.11 - https://github.com/isopov/jackson-optional-test/blob/workaround/src/test/java/com/example/OptionalJacksonTest.java Still proper fix will be highly appreciated.

Linked boot-issue was closed due to lack of feedback...

It seems that this issue is not a bug, since java driver behaves pretty much the same: ``` import com.datastax.oss.driver.api.core.CqlSession; import java.net.InetSocketAddress; import java.util.concurrent.Executors; public class Main { public static...

However with java driver adding the following config to CqlSession ``` DriverConfigLoader loader = DriverConfigLoader.programmaticBuilder() .withClass(DefaultDriverOption.REQUEST_THROTTLER_CLASS, ConcurrencyLimitingRequestThrottler.class) .withInt(DefaultDriverOption.REQUEST_THROTTLER_MAX_CONCURRENT_REQUESTS, 500) .withInt(DefaultDriverOption.REQUEST_THROTTLER_MAX_QUEUE_SIZE, 100_000) .build(); ``` allows to sustain heavy load from client...

Test project is here - https://github.com/spring-projects/spring-boot-issues/pull/2

BTW - I hacked this issue the following way - https://github.com/isopov/fan/blob/master/fan-web/src/main/java/com/sopovs/moradanen/fan/WebApplicationConfiguration.java It required to refer to taglibs with instead of

What was the intended way to work with spring-security from freemarker based spring-boot application?