Microservices is the new buzz word in software development word and everybody is talking about it, but it’s been in practice for quite…
Category: Articles
Setup OS X development environments | Udemy
This course covers the easiest way to setup multiple environment stacks. Such as Java, Ruby, DB’s and more – Free Course
10 JDK 7 Features to Revisit, Before You Welcome Java 8
It’s been almost a month Java 8 is released and I am sure all of you are exploring new features of JDK 8. But, before you completely delve …
10 Advanced core Java interview questions for senior and experienced programmer
Blog about Programming, Design, Java, Tutorial, Examples, Interview Questions, Java 5, 6, 7, 8, 9 features, multithreading, Linux, UNIX and tips.
Build a Spring Boot App with Secure Server-to-Server Communication via OAuth 2.0 and Okta
“I love writing authentication and authorization code.” ~ No Java Developer Ever. Tired of building …
How to Use Infinite Sets in Java 9 – DZone Java
To move away from a paradigm where we store the elements of a Set, we can create an Immutable StreamSet, Positive LongSet, and infinite set in Java 9.
Generalized Target-Type Inference in Java | Baeldung
Explore Java’s Type Inference, that along with generics and Lambda Expression enables us to write concise Java code.
A Simple Blockchain in Java – DZone Security
A Java developer gives a brief tutorial on how to create and implement a blockchain using the Java language, in this case using the POJO method in Java.
Learn Unit Testing with Junit & Mockito in 30 Steps
Learn Mockito and JUnit – the most popular unit testing and mocking frameworks – with 25 Examples
JavaParser – For processing Java code
myClass . addField ( int . class , “A_CONSTANT” , PUBLIC , STATIC ) ; myClass . addField ( String . class , “name” , PRIVATE ) ; S….
Top 10 Java HashMap Interview Questions and Answers
Blog about Programming, Design, Java, Tutorial, Examples, Interview Questions, Java 5, 6, 7, 8, 9 features, multithreading, Linux, UNIX and tips.
Deploying a Java application on Azure Container Service and Cosmos DB | Microsoft + Open Source
Introduction Bitnami was recently invited to speak at a few Azure Meetups and we took that as an opportunity to …
Java Modules
Java modules are a special way of packaging your Java code that tells which packages in your module should be visible to modules using your module, and which other modules your module requires.
How to do GROUP BY in Java 8? Collectors.groupingBy() Example
Java 8 now directly allows you to do GROUP BY in Java by using Collectors.groupingBy() method. GROUP BY is a very useful aggregate operati…
Dagger: Implement the full stack with this dependency injector for Java & Android – JAXenter
Today, we’re taking a look at Dagger, the extra-fast dependency injector from Google that generates simple Java at compile for the entire stack.