christophejan
christophejan
Currently, all 3.x.x versions of OpenAPI Specification define [Header object](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.3.md#headerObject) as : > The Header Object follows the structure of the **Parameter Object** with the following changes: > > 1....
Trigger Spring Boot configuration meta-data generation (META-INF/spring-configuration-metadata.json)
Spring Boot Reference Documentation suggest in [Creating Your Own Starter > Configuration keys](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#features.developing-auto-configuration.custom-starter.configuration-keys) section to "_Make sure to trigger meta-data generation so that IDE assistance is available for your (configuration)...
**Describe the bug** _arrow-integrations-jackson-module_ for `Either` throw exception when Jackson default typing is activated **To Reproduce** ``` data class MyDataClass(val myValue: Any) val objectMapper = ObjectMapper().apply { activateDefaultTyping(polymorphicTypeValidator, DefaultTyping.NON_FINAL, As.PROPERTY)...
I think TurboFilter `decide` method should be called with provided format/params/throwable the same way whether fluent logging API has been used or not. Currently, with slf4j-api 2.0.16 and logback-classic 1.5.8...
With spring-web 6.2.5, I get the following behavior : ``` System.out.println(UriComponentsBuilder.fromUriString(“http://myhost?a={p1}&b={p2}&a={p3}”).buildAndExpand(“a1”, “b1”, “a2”)); ``` Output : ``` http://myhost?a=a1&a=b1&b=a2 ``` I was expecting the following output : ``` http://myhost?a=a1&b=b1&a=a2 ``` It...