This post looks at the top reasons for learning Java, including its open source, versatility, new additions, applications, development tools, and more.
Category: Articles
Java 11 Features – Java Flight Recorder
In this article we will see how we can leverage Java Flight Recorder feature as part of Java 11. Earlier it was one of the commercial feature. But with Java 11 with JEP …
Libraries, Choosing the Right One
This blog is the source for news about major Java announcements and the Java community.
Leveraging Lambda Expressions for Lazy Evaluation in Java
In Java, the potential of lazy evaluation is quite neglected (actually, at the language level, it’s pretty much limited to the implementation of minimal evaluation)…
Generate XSD from JAXB Java Classes using Eclipse – HowToDoInJava
Learn to create XML schema document (xsd) from JAXB annotated Java classes using Eclipse IDE. 1) Add JAXB Annotations to Java Classes First step is to add annotations such as @XmlRootElement, @XmlAccessorType and @XmlElement etc. to your Java classes. 2) Generate XSD from JAXB Classes 2.1) Navigate to Eclipse Option 2.2) Select location for generated …
Java EE with Vaadin, Spring Boot and Maven | Udemy
Vaadin Framework, Spring, Spring Security, Spring Boot, Maven, JPA, JBoss – WildFly
Guide to Java URL Encoding/Decoding | Baeldung
The article discusses URL encoding in Java, some pitfalls, and how to avoid them.
8 Reasons to Use Kotlin Over Java for Android Development – DZone Java
This post looks at using Kotlin instead of Java for Android app development, highlighting the age of Java as well as the improved conciseness of Kotlin code.
5 Open Source Myths
Despite the growth of organizations taking advantage of open source benefits, there are still many misconceptions surrounding open source software. Here are 5 concerns about open source software and why they should be considered myths:
JAXB Write Java Object to XML Example – HowToDoInJava
Java example to write Java object to XML. Information stored in Java objects fields can written into XML file or simply XML string as well. 1) Convert Java Object to XML String To write Java object to XML String, first get the JAXBContext. It is entry point to the JAXB API and provides methods to …
Eliminating Java Update Confusion – DZone Open Source
If you have any confusion about the latest releases of OpenJDK and the way that it will affect you as a Java user, check out this article for more clarity.
A Disappointing Story on Java Memory Optimization – DZone Performance
A developer discusses a project he and his team worked on to research and analyze the performance of a web application they had build, and how they tested it.
Java Magazine: July/August 2018 Twitter
View the digital edition of Java Magazine: July/August 2018 Twitter.
Top 20 Spring REST Interview Questions Answers for Java Programmers to Prepare Well in 2018
Hello guys, I have been sharing some REST with Spring tutorials from last a couple of weeks and today, I am going to share some of the freq…
JAXB Read XML to Java Object Example – HowToDoInJava
Java example to read XML to Objects. XML can be supplied via some .xml file or simply an string representation. The populated Java objects then can be used in application for further processing or workflow. 1) JAXB vs SAX vs DOM Java provides many approaches to read an XML file and use the XL content …