Sergey Volkov

Results 6 comments of Sergey Volkov

One of possible workarounds: different configuration (HttpClient = Apache client). ```kotlin @Bean fun httpClientWithLogbook(): HttpClient { return HttpClientBuilder.create() .addInterceptorFirst(LogbookHttpRequestInterceptor(logbook)) .addInterceptorLast(LogbookHttpResponseInterceptor()) .build() } @Bean fun restTemplateXYZ( restTemplateBuilder: RestTemplateBuilder, httpClientWithLogbook: HttpClient, props:...

On JDK 16+ this becomes an error This helped: > Add an Apache Xerces jar to the application classpath, so that it gets used as SAX implementation instead of the...

It seems to me, spring data is also involved in this issue. According to spring docs, `java.lang.reflect.Proxy` should not be used as proxy any more (by default) in favor of...

I found this option in Android client, but not in Windows one. AmneziaWG server settings -> VPN address subnet (first setting actually)

What I did as a workaround: ```kotlin @Configuration(proxyBeanMethods = false) class DbSchedulerConfig( private val applicationTaskExecutor: ThreadPoolTaskExecutor ) { @Bean fun dbSchedulerCustomizer(): DbSchedulerCustomizer = object : DbSchedulerCustomizer { // this is...

Quick fix worked for me, at least for request body parameters, to add `@Schema(required = false, defaultValue = "value")` to a field. > Should default values affect requirement status? >...