Hello guys, do you want to learn how to avoid deadlock while writing concurrent programs, especially in Java? Writing correct concurrent…
Configuring SSL/TLS Certificates with Payara Server and Let’s Encrypt
To run your application or server over HTTPS you’re going to need a certificate. Commonly referred to as an SSL or TLS certificate, this is a guide on how to register one using Let’s Encrypt’s Certbot and then how to configure Payara Server to use it.
Sorting Arrays in Java | Baeldung
Learn how to sort arrays or primitive types and objects in ascending and descending order
Find out n numbers of missing elements from an array in java
I have an array which carry some integer numbers. Say,numbers={3,0,1} or say, numbers={9,6,4,2,3,5,7,0,1}. Now I have to find out the missing numbers from the array. As per this example there is on…
Eclipse IDE 2018-12 arrives with some major improvements – JAXenter
The second quarterly Simultaneous Release for the Eclipse IDE is here and it brings along some major improvements, like faster UI & new quick fixes.
vladmihalcea
A high-performance data access layer must resonate with the underlying database system. Knowing the inner workings of a relational database and the data access
Introduction to JPA Architecture – DZone Java
Let’s take a look at the Java Persistence API architecture and how to implement it with Hibernate, EclipseLink, and Apache OpenJPA.
Release Streams
Release Streams With Payara Server 171 we’ve introduced our new Release Streams: Community, Features & Stability. Want to benefit ….
Build a Basic App with Spring Boot and JPA using PostgreSQL
“I love writing authentication and authorization code.” ~ No Java Developer Ever. Tired of building…
Using jlink to Build Java Runtimes for non-Modular Applications
The most important new feature of JDK 9 was the Java Platform Module System (JPMS) that divided the monolithic rt.jar and tools.jar files…
Java Annotated Monthly – December 2018 | IntelliJ IDEA Blog
Posted on December 11, 2018 by Trisha Gee Happy winter/summer solstice and any associated festivals and holidays you may or may no….
Java 11 String API Additions | Baeldung
Learn about additions to the String API in Java 11.
Consuming MicroProfile Metrics with Prometheus
In a distributed micro-services architecture, it is important to have an overview of your systems in terms of CPU, memory management and other important metrics. This is called Observability, measuring the internal state of a system, in this case, the micro-services instances.
Using the IdentityHashMap in Java – DZone Java
While the IdentityHashMap implements the Map interface, it intentionally violates Map’s general contract, which mandates using equals when comparing objects.