In this Java tutorial we will go over difference between Java String, StringBuffer and StringBuilder. Let's get started: String: The String class represents character strings. All string …
Java11 Archives...
Java Timer, TimerTask, Reminder Class Tutorial with Example
java.util.Timer is a utility class that can be used to schedule a thread to be executed at certain time in future. Java Timer class can be used to schedule a task to be run one-time or to be run at …
Read Article about Java Timer, TimerTask, Reminder Class Tutorial with Example →
Java Transient Keyword Tutorial – A transient variable is a variable that can not be serialized
If you have a requirement to serialize an object then you have an option to skip serialize specific field by marking it as transient. transient is a Java keyword which marks a member variable not …
Getting Ready for Java 11/JDK 11 and Deprecated Java EE Modules JAXB, JAX-WS, JAF, JTA, CORBA
Hello all! It's time for us to upgrade to Java 11. Sometime back Java 11 was launched on September 25, 2018. Today we got chance to upgrade our JDK to Java11 on my Macbook Pro. Do you have any of …
Java 11 and How to fix java.lang. TypeNotPresentException: Type javax.xml.bind.JAXBContext Exception?
Are you facing java.lang.TypeNotPresentException: Type javax.xml.bind.JAXBContext not present exception? Today while running my RESTful service on my Eclipse I noticed javax.xml.bind.JAXBContext …