Java 11
Java 11 Features are covered in this category
-
Interview Preparation, J2EE, Java 11, Java 14, Java 16, Java 17, Java 8, Maven SVN + Git, Microservices, MySQL, SOA Architecture, Spring Boot, Spring/Azure/AWS Cloud, Tomcat container
Spring Boot : Steps to Configure and Fine-Tune HikariCP DataSource
1. For better performance and concurrency in microservice architecture, HikariCP is recommended along with Spring Boot application. Main question is how to configure HikariCP in our microservice? Answer is, its simple and straight…
-
Angular, Docker and Kubernetes, Frontend, Interview Preparation, J2EE, Java 11, Java 14, Java 16, Java 17, Java 8, Maven SVN + Git, Microservices, SOA Architecture, Spring Boot, Spring/Azure/AWS Cloud
CI/CD DevOps: Steps To Create a CI/CD Pipeline With Jenkins, Containers, and Amazon ECS
CI/CD Pipelines with Docker is best way for an organization to improve code quality and deliver software releases quickly without any human errors. We hope this blog will help you about the…
-
Docker and Kubernetes, Interview Preparation, Java 11, Java 14, Java 16, Java 17, Java 8, Microservices, SOA Architecture, Spring/Azure/AWS Cloud
Kubernetes (K8) – Why certain organizations continue to be satisfied with Monolithic or SOA design?
In this blog we will discover the drawbacks of implementing an application with Kubernetes (K8), a popular container orchestration system. As we all know the main advantages of Kubernetes (k8) are: But…
-
Angular, Docker and Kubernetes, Interview Preparation, J2EE, Java 11, Java 14, Java 16, Java 17, Java 8
Java 17 – New Features and Improvements + Deprecated and Removed APIs + Example
1. List of JEPs First, let’s talk about what can affect the everyday work in the life of Java developers using Java 17 features. 1.1. Restore Always-Strict Floating-Point Semantics (JEP 306) This…
-
Docker and Kubernetes, Interview Preparation, Java 11, Java 14, Java 16, Java 8, Microservices, Spring Boot, Spring/Azure/AWS Cloud
AWS Cloud Top 100 Interview Questions & Answers (2023 Update)
Here are AWS Cloud interview questions and answers for fresher as well as experienced candidates to get the dream job. Basic AWS Interview Questions 1. Define and explain the three basic types of cloud…
-
Java 14 – New Features and Improvements + Deprecated and Removed APIs + Example
In this article we will learn about New Features in Java 14 along with deprecated/removed features and APIs. New Java language features since Java 8 Java Main Feature (Since Java 8) Since…
-
Interview Preparation, Java 11, Java 8, Microservices, Red Hat JBoss Developer Studio, Spring Batch, Spring Boot
Spring Boot + @EnableScheduling + @Scheduled + Scheduled Tasks
Spring boot provides excellent features for both task scheduling and asynchronous method execution based on cron expression using @Scheduled annotation. The @Scheduled annotation can be added to a method along with trigger…
-
PKIX… unable to find valid certification path to requested target eclipse – Fix
Problem: Eclipse: MarketplaceDiscoveryStrategy failed with an error Solution: You can solve this (PKIX) problem like this. Note: You may follow the below step for exporting and importing certificates from Web Browser to…
-
Can you use this() and super() both in a constructor?
No, you cannot use both this() and super() in the same constructor. This is because both keywords must be the first statement in the constructor, and there can only be one first…