Core Java
-
Java 8 Friday: More Functional Relational Transformation
In the past, we’ve been providing you with a new article every Friday about what’s new in Java 8. It…
Read More » -
JavaFX Tip 5: Be Observable
Even in this time of total NSA surveillance it is still a good idea to implement your JavaFX controls with…
Read More » -
JavaFX Tip 4: Have The Final Word
When developing custom controls for JavaFX I would highly recommend to follow in the footsteps of the core JavaFX controls and to…
Read More » -
Compounding double error
Overview In a previous article, I outlined why BigDecimal is not the answer most of the time. While it is…
Read More » -
JUnit: testing exception with Java 8 and Lambda Expressions
In JUnit there are many ways of testing exceptions in test code, including try-catch idiom, JUnit @Rule, with catch-exception library.…
Read More » -
6 Reasons Not to Switch to Java 8 Just Yet
Java 8 is awesome. Period. But… after we had the chance to have fun and play around with it, the time…
Read More » -
Top 5 Java Performance Tuning Books – Best of Lot, Must read
Why Java developer should read a book on Performance tuning? When I first faced this question long time back, I…
Read More » -
Turning recursive file system traversal into Stream
When I was learning programming, back in the days of Turbo Pascal, I managed to list files in directory usingFindFirst, FindNext and FindClose functions.…
Read More » -
Mapping your Entities to DTO’s Using Java 8 Lambda expressions
We all facing the cluttered overhead code when we need to convert our DTO’S to Entities(Hibernate Entities, etc..) and backwards.…
Read More »