In this article, we will use schemagen and xjc utilities for xml schema to java object and java object to xml schema conversion. Both these utilities are included as part of JDK. schemagen utility can generate an XML Schema instance from a POJO. xjc can generate java classes from a XML schema. …
Continue reading xml schema to Java object and Java object to schema conversion with schemagen and xjcMisc
Basic Encryption/Decryption strategy: The aim of encrypting/decrypting data is to make sure the data sent by sender can be understood by the intended recipient only. For example, if person A is sending a message to person B, another person C eavesdropping to the message should not be able to read it. So, …
Continue reading Symmetric/Asymmetric Encryption and Decryption