From Enterprise Java Microservices by Ken Finnigan
Just enough Application Server (JeAS) is a term has been used on occasion over the years, but usually in relation to customizing a full application server by removing functionality manually. Only with the popularity of microservices has JeAS become crucial for Enterprise Java. This article talks about what JeAS means and some of its benefits.
From Kotlin in Action by Dmitry Jemerov and Svetlana Isakova
The Java platform defines several methods that need to be present in many classes and are usually implemented in a mechanical way, such as equals
, hashCode
, and toString
. Fortunately, Java IDEs can automate the generation of these methods, and you usually don’t need to write them by hand. In this case, your codebase contains the boilerplate code. The Kotlin compiler takes a further step: it can perform the mechanical code generation, behind the scenes, without cluttering your source code files with the results.
From Spring Microservices in Action by John Carnell
This article discusses controlling service configuration using Spring Cloud Config.
From Spring Microservices in Action by John Carnell
This article introduces the Spring Cloud and gives information about writing microservices for Spring deployments.
Learn more about Spring Boot and the Spring Framework in this interview with Craig Walls, author of Spring Boot in Action, along with five editions of Spring in Action. |
![]() |
By Mala Gupta
In this article, excerpted from OCA Java SE 8 Programmer I Certification Guide, I introduce you to the concept of default access level in Java.
By Mala Gupta
In this article, excerpted from OCA Java SE 8 Programmer I Certification Guide, I will cover executable Java applications.