Java
-
Fluent Design Style Button, Toggle Button and Tooltip For Java, JavaFX
Hi again! This weekend, during my spare time, I’ve continued work on JMetro. The end result is a new Button…
Read More » -
Nested classes and private methods
When you have a class inside another class they can see each others private methods. It is not well known…
Read More » -
MongoDB Index Strategies and Types of Indexes
1. MongoDB Index Strategies and Types of Indexes – Introduction MongoDB is an open-source, document-oriented, and cross-platform database which is…
Read More » -
String.valueOf(Object) versus Objects.toString(Object)
The handy method String.valueOf(Object) has been around since JDK 1.0 and is one of the JDK-provided methods that I use…
Read More » -
Restful API using Spring Rest & Spring Data JPA & H2 with Spring Boot Example
Hello Friends, In this tutorial, you will learn the following : 1. Configuring Spring Rest, Spring Data JPA and H2…
Read More » -
Embracing modular Java platform: Apache CXF on Java 10
It’s been mostly a year since Java 9 release finally delivered Project Jigsaw to the masses. It was a long,…
Read More » -
Build a Secure API with Spring Boot and GraphQL
“I love writing authentication and authorization code.” ~ No Java Developer Ever. Tired of building the same login screens over…
Read More » -
Swagger UI on MicroProfile OpenAPI
MicroProfile OpenApi gives us a standardized way to describe our JAX-RS API’s using OpenApi 3. If you have used swagger-jaxrs…
Read More » -
Builders and Manipulators
Here is a simple principle for naming methods in OOP, which I’m trying to follow in my code: it’s a…
Read More »