Skip to main content

Top 10+ Java 8 Tutorials - Must Read

There are so many Java 8 tutorials are written by Oracle, bloggers and other peoples, but which should you read? Which tutorials are worth of your time? Actually this question is asked to me by one of my reader called John, he was asking me about some good Java 8 tutorials, which he can read to start with. This encouraged me to take a look at some of Java 8 tutorials available on internet and form a list of best.




These tutorials are good for both intermediate and experienced Java programmers, you will learn sufficient details of all key Java 8 features by following good non-trivial examples. Most of the tutorials are detailed enough to  provide all important information and good enough to engage you for that period of time.


  1.  Official Java 8 Tutorial from Oracle
  2. Java 8 Tutorial By Benjamin Winterberg
  3.  Lambda Expressions in Java 8
  4. Overview of JDK 8 Support in NetBeans IDE
  5. My Java 8 Lambda Expression and Streams Example
  6. Maurice Naftalin's Lambda FAQ
  7. My Java 8 Streams Examples
  8. Java 8 Tutorials through Katas : Berlin Clock (Easy)
  9. A deeper look into the Java 8 Date and Time API
  10. Java 8 Stream Tutorial
  11. Java 8 Nashorn Tutorial
  12. Java 8 StampedLocks vs. ReadWriteLocks and Synchronized


Comments

Popular posts from this blog

System.out.println In Java

System  is a class in the  java .lang package.  out  is a static member of the  System  class, and is an instance of  java .io.PrintStream .  println  is a method of  java .io.PrintStream . This method is overloaded to print message to output destination, which is typically a console or file. System is a class, that has a public static field out . So it's more like. public final class System { /** * The "standard" output stream. This stream is already * open and ready to accept output data. Typically this stream * corresponds to display output or another output destination * specified by the host environment or user. * <p> * For simple stand-alone Java applications, a typical way to write * a line of output data is: * <blockquote><pre> * System.out.println(data) * </pre></blockquote> * <p> * See the <code>println...

JSON (JavaScript Object Notation)

JSON (JavaScript Object Notation) is an open standard file format and data interchange format that uses human-readable text to store and transmit data objects consisting of attribute–value pairs and arrays (or other serializable values). It is a common data format with diverse uses in electronic data interchange, including that of web applications with servers. JSON is a language-independent data format. It was derived from JavaScript, but many modern programming languages include code to generate and parse JSON-format data. JSON filenames use the extension .json. Any valid JSON file is a valid JavaScript (.js) file, even though it makes no changes to a web page on its own. Douglas Crockford originally specified the JSON format in the early 2000s. He and Chip Morningstar sent the first JSON message in April 2001. Official website :- https://json.org/

Amazon DynamoDB : Fully managed proprietary NoSQL database service

 Amazon DynamoDB is a fully managed proprietary NoSQL database service that supports key–value and document data structures and is offered by Amazon.com as part of the Amazon Web Services portfolio. Dynamo had a multi-leader design requiring the client to resolve version conflicts and DynamoDB uses synchronous replication across multiple data centers for high durability and availability.  DynamoDB was announced by Amazon CTO Werner Vogels on January 18, 2012, and is presented as an evolution of Amazon SimpleDB. DynamoDB differs from other Amazon services by allowing developers to purchase a service based on throughput, rather than storage. If Auto Scaling is enabled, then the database will scale automatically. To prevent data loss, DynamoDB features a two-tier backup system of replication and long-term storage. Each partition features three nodes, each of which contains a copy of that partition's data. Each node also contains two data structures: a B tree used to locate items,...