One of my reader Shobhit asked this question on my blog post about 12 must-reads advanced Java books for intermediate programmers – part1…
Category: dummyCategory
10 Books Java Developers Should Read in 2018 – Best Of Lot
Hello guys, If you are Java developer and wondering what to read in 2018 then you have come to the right place. In this article, I am going…
Build a Serverless “Hello World” Function
Serverless, Function as a Service (FaaS) or just cloud functions allows you to write code that will …
Build a Photo Gallery PWA with Spring Boot, JHipster, and React
“I love writing authentication and authorization code.” ~ No Java Developer Ever. Tired of building …
Implementing White-Labelling
Sometimes (very often in my experience) you need to support white-labelling of your application. You…
Gradle 4.9 Release Notes
Switch your build to use Gradle 4.9 quickly by updating your wrapper properties: ./gradlew wrapper –gradle-version=4.9 Standalone….
How to install eclipse for java 10 – Java 10 Examples
In this tutorial, we show you how to install Eclipse and get started with Java JDK 10 on Windows 10.
improve the setting structure for web app plugin · issue #200 · microsoft/azure-maven-plugins
Currently the setting structure of the Web App plugin is somehow confusing. We need to simplify it.
Encrypting and Decrypting Files in Java | Baeldung
Use CipherInputStream and CipherOutputStream classes to encrypt and decrypt files in Java.
Payara | Frequently Asked Questions
Find out more about Payara Server, Payara Micro, Payara’s relationship to GlassFish, Java EE and more.
JMetro “Metro” Tab, TreeView and ContextMenu for Java (JavaFX) | Pixel Duke
Release of version 3.3.0 of JMetro. Fluent Design System inspired theme for Java (JavaFX). By JavaFX and Swing Freelancer and Consultant Pixel Duke.
Java Convert Date or Timestamp Between Timezones – HowToDoInJava
Java examples to convert a date from one timezone to another timezone. We will see the examples using ZonedDateTime, Date and Calendar classes.
10 Surprising Ways You Can Use Java
Wondering what you can do with your Java development expertise? Check out these 10 surprisingly cool ways to earn a living with Java.
Java Convert String to LocalDate – HowToDoInJava
Learn to convert string to java.time.LocalDate object in Java. LocalDate instances are immutable and thread-safe, which makes it very useful for robust application design.
Java calculate execution / elapsed time – HowToDoInJava
Learn to calculate execution time or elapsed time of program or some statements using System.nanoTime() or System.currentTimeMillis() methods.