skip to Main Content

How to remove the "nameValuePairs" key from a json in java SpringBoot?

I have the following method that when receiving an xml in a String converts it to objects of type CitiMarketSSAEvent public CitiMarketSSAEvent convertXmlToObject(String xml){ CitiMarketSSAEvent citiMarket = null; JAXBContext jaxbContext = JAXBContext.newInstance(CitiMarketSSAEvent.class); Unmarshaller unmarshaller = jaxbContext.createUnmarshaller(); StringReader reader = new…

VIEW QUESTION

Azure spring boot JPA

Am using azure keyvault to store my db username , url & password. I am using <dependency> <groupId>com.azure.spring</groupId> <artifactId>spring-cloud-azure-starter-keyvault-secrets</artifactId> </dependency> this dependency to read the values configured in keyvaults in my spring boot application. But am getting Failed to determine…

VIEW QUESTION
Back To Top
Search