Shabin

Results 8 comments of Shabin

I am migrating from a non reactive to a reactive app. I have a requirement to update all my queries with a custom value, where I replace some pattern like...

Tried doing that. Found it complicated that I had to implement all the GenericExecuteSpec, SelectFromSpec etc, for simply doing a query preprocessor. If DefaultDatabaseClient was public I could have simply...

That time I checked out the master code and used it for verifying the functionality. Now I tried the same with the `spring-cloud-starter-circuitbreaker-resilience4j` 2.0.2 version and found the same issue.

@Aravinda93 Thanks for the reply. That looks simpler than my unmarshaller and it almost worked for me. The issue is that the unmarshalled value became an array `{outersimple=val, key=[{key2=[{key3=value}, {innersimple=keee}]},...

Thanks for the suggestions. I had already gone through those links and that's how I reached the idea of `AdaptedMap` and `@XmlVariableNode`. But all those fall apart once the datatype...

Since I couldn't get any straight forward solution, I had to change the moxy core code to make it work the way I wanted. I modified [`JsonStructureReader.parsePair()` method](https://github.com/eclipse-ee4j/eclipselink/blob/2c549e22087194d7044368bf0b1dd904220f2263/foundation/org.eclipse.persistence.core/src/org/eclipse/persistence/internal/oxm/record/json/JsonStructureReader.java#L495) and called...

Thanks @Aravinda93 for the comments. Helped me to dig deeper and understand some concepts. :)

I also faced the same issue. I think the issue is with [this commit](https://github.com/spring-projects/spring-boot/commit/36f1249fc64b55066200bbdd52f18bd8df13ec15#diff-498756a9c4be5f9d91ba746fa96b58c2a35b96eaa7f98a87e0d7dbd5e0796cfc) in spring boot. In `Saml2RelyingPartyRegistrationConfiguration.AssertingPartyProperties.get(String name, Function getter)` method, value of `getAssertingParty` is returned if the...