gregoireW
gregoireW
@dungdm93 You mention you are interrested by the image digest. Can you elaborate on your use case ?
Putting a record as stand alone type in is own file and setting `@JsonNaming(PropertyNamingStrategies.SnakeCaseStrategy.class)` fail with the same exception as before. From what I read in the code, Jackson first...
I only scratch the surface on how it works, so yes I more guess on what I saw than really drill down the code. > So multiple bad options. I...
btw, I did a test with toolchains to check what was possible to do. If you setup a `~/.m2/toolchains.xml ` file like (well update the JDK location to fit your...
This issue resurface if we extract additional attributes with this: https://github.com/fluxcd/image-reflector-controller/pull/211 Has been discussed quickly in the weekly meeting ( I'm not really good at remembering name ... sorry @relu...
I had to do something similar: ```java @Configuration public class JsonConfig { @Bean public JsonNullableModule jsonNullableModule(ObjectMapper objectMapper) { var module=new JsonNullableModule(); objectMapper.registerModule(module); return module; } @Bean public RestTemplate template(ObjectMapper objectMapper){...
You can switch temporary to the wiremock-jre8-standalone it is an uber jar with dependencies package renamed except for a few of them. It should be ok for most application.
@kkocel try to upgrade wiremock to to 2.35.0 on a SpringBoot 3.0.0 application it works on my end (I got a small app, so not a lot of possible conflict....
@bhavyaSharma-appD (I'm not a wiremock maintainer so i speak only from what I observe) There is a wiremock 3.0 beta version which solve mains of the problem on springboot3 (the...
@jwedel the issue is decribed here with a workaround: https://github.com/wiremock/wiremock/issues/2395