Create and run a Java application that makes use of private interface method/s.
Category: dummyCategory
In Java how to Delete Files, Folders from Windows, Mac OS X and Linux OS? • Crunchify
Sometime back I’ve written an article on how to remove /tmp or unnecessary files / folder on Linux automatically via script? Now it’s time to write the
javaee-samples/javaee7-samples
Java EE 7 Samples. Contribute to javaee-samples/javaee7-samples development by creating an account on GitHub.
Spring Core – Learn Spring Framework 4 and Spring Boot
Build a web application using Spring Framework 4 and Spring Boot – Free Course
How does newly introduced Arrays.parallelPrefix(…) in Java 8 work?
I came across Arrays.parallelPrefix introduced in Java 8.This overloaded method performs operation on each element of the input array in a cumulative fashion. For e.g. from docs: Cumulates, in
Java LinkedHashMap class – HowToDoInJava
Java LinkedHashMap stroes key-value pairs very similar to HashMap class. Difference is that LinkedHashMap maintains the order of elements inserted into it.
4 reasons why Gradle may be the right Java build tool
Gradle is a Java build tool without the out-of-the-box functionality of a tool like Maven but has the capability with smart build functionality to handle multiple projects at once.
Group by a Collection attribute using Java Streams
Join Stack Overflow to learn, share knowledge, and build your career. Google Facebook Home Public 3 I have an object that contains….
Top Five Free Java 8 and 9 Courses for Programmers – DZone Java
This post provides a list of the top five free online courses for learning more about the additions to Java 8 and Java 9, including new methods, APIs, and more.
Java 9 New Features | Baeldung
A quick and practical guide to the most interesting features coming to Java 9.
HTTP cache with Spring examples
Caching is a powerful feature of the HTTP protocol but for some reason, it’s mainly considered for s…
HashTable in Java – Java Hashtable example – HowToDoInJava
Java Hashtable class is an implementation of hash table data structure. It is very much similar to HashMap but it is synchronized while HashMap is not.
The State of Java Serialization
Java’s Serialization feature has garnered several years’ worth of security exploits and zero day attacks. This article discusses the current state of the technology and what can be done, both now and in the future, to protect against serialization flaws.
Java says the year 0 is a leap year but year 0 never existed
I was writing some test cases for some convenience methods that I am updating and decided to see what would happen if I used LocalDate’s isLeapYear() method on the year 0. As I understand it, year 0
How to join or merge two hashmaps in Java – HowToDoInJava
Learn to merge two hashmaps in Java. Learn to join hashmaps in two cases – ignore duplicate keys (overwrite values) or handle duplicate keys using Java 8.