Java articles
237 subscribers
245 links
Channel providing you with the Java and software development industry related content
Download Telegram
Java 11 will be the next LTS release after Java 8 which is to be released on September 2018. Here you can read a short article about few new features from Java 11 such as new GC and removing the Java EE and CORBA modules, this article also explains what new release policy from Oracle means.
https://blog.takipi.com/java-11-will-include-more-than-just-features/
Gradle 4.7 Release Notes.
This release also supports running Gradle builds with JDK 10
https://docs.gradle.org/current/release-notes.html
If you didn't try Kotlin yet here is short and simple article about some unique features that Java doesn't have and makes Kotlin stand out.
https://itnext.io/a-day-with-kotlin-5a55eba1965e
Here is an article about atomic updates in Java 8 ConcurrentHashMap, also I would recommend you to read articles which autor mentions in the beginning, if you don't know how ConcurrentHashMap works.
https://dzone.com/articles/java-8-concurrenthashmap-atomic-updates
The series of articles about Java's lambdas, streams and functional programming approach in Java in general. You can also find there interesting diagrams showing how Java had changed from the first version to Java 8.
https://dzone.com/articles/j%CE%BBv%CE%BB-8-a-comprehensive-look
A short intro into JWT (JSON Web Token). I guess the title of the article doesn't correlate with its content, it was odd for author to name the article "Java 9" and to use java.util.Date (deprecated API) at the same time. Besides, it's not in any way connected with Spring Boot.
#jwt #java
https://dzone.com/articles/jwts-with-spring-boot-and-java-9
Returning to the topic of time libraries in Java, I would recommend you to read the following article (which features really good examples), especially If you still get confused by the different types in java.time (Instant, LocalDateTime and so on) and are not sure how to use them properly.
#java #time
https://yawk.at/java.time/