Tutorial

Java Tutorial, Java EE Tutorials

Published on August 3, 2022
    Default avatar

    By Pankaj

    Java Tutorial, Java EE Tutorials

    While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.

    I have written a lot of java tutorials here into many categories. Some of them are in core java tutorial whereas some of them are in J2EE tutorial or Java EE tutorial area. As the number of posts grows, keeping track of them becomes harder. So I have provided a summary post for most of the categories where you can read them in the order for better understanding.

    Java Tutorials

    This post is aimed to include all the summary posts in java tutorials that you should go through to have a clear understanding of that area.

    1. Collections Framework

    java tutorial, collections framework tutorial Java Collections are one of the core frameworks of Java language. We use Collections almost in every application, this tutorial will explain Java Collections Framework in detail. Learn about collections framework interfaces, classes and algorithms in detail.

    2. Java Tutorial - XML

    java tutorial, java xml tutorial XML is widely used technology to store or transport data and it’s platform independent. Java provides various API’s to read, write or manipulate XML data. This tutorial explains about DOM Parser, SAX Parser, JDOM Parser, StAX Parser and misc xml tasks.

    3. Java Regular Expression

    java tutorial, java regular expression tutorial A regular expression defines a pattern for a String. Regular Expressions can be used to search, edit or manipulate text. A tutorial covering java.util.regex package classes, regular expression symbols, metacharacters, quantifiers and capturing groups in detail with example.

    4. Java IO

    JAVA Tutorial, Java IO Tutorial Java IO package contains classes to work with Files, Stream data and File System. A comprehensive tutorial covering various aspects of Files, Directories, Create a File, Read a File, Write a File, Delete a File/Directory, RandomAccessFile, Temp File, ZIP and Unzip File/Directory, GZIP and Serialization/Deserialization examples.

    5. Java Multithreading

    java tutorial, java thread tutorial Java Thread tutorial explains difference between Process and Thread, how we can create Thread by extending Thread class or implement Runnable interface, important methods of Thread class, different states of Thread, Thread safety and Synchronization, how to get thread dump in java, deadlock situation and how to analyze and avoid it, Timer Thread, Daemon Thread, ThreadLocal implementation, Producer-Consumer problem, Thread Pool, Executors framework and Callable interface returning value from thread execution.

    6. Java Logging

    Java tutorial, java logging Java Logging API was introduced in Java 1.4, a complete tutorial explaining Logger class, different Logging Levels, different Logging Handlers, Logging Formatters, Log Manager and Logging configuration property files.

    7. Java Annotations

    Learn about the Java annotations and the benefits of using annotations. The post explains java built-in annotations, how to create custom annotations, meta annotations and how we can parse annotations of a class using Reflection API.

    8. Java Generics

    Generics was introduced in Java 5 to remove type-casting in using Collection classes and to provide means for type checking at compile time. We can use Generics to create generic type interface and classes and we can use it with methods too. Learn about features of Generics in great detail in this extensive post.

    9. Java Exception Handling

    We don’t like exceptions but we always have to deal with them, great news is that Java Exception handling framework is very robust and easy to understand and use. Check out the post to learn about Exception Handling and best practices to follow for better exception handling.

    10. Java Reflection

    Reflection is a very powerful API and used in almost all the Java, J2EE frameworks like Spring, Hibernate, JUnit and Tomcat. It’s one of the advanced topics of core java and used in framework implementations, check out this post to learn about Java Reflection API with a lot of examples.

    11. Java Design Patterns

    Design Patterns provide a standard solution for common software development recurring problems. There are 22 design patterns in java divided into three categories - creational, structural and behavioral design patterns. Check out the post to learn about these design patterns, their intent and how to implement them with an example.

    12. JDBC Tutorial

    Java DataBase Connectivity (JDBC) API provides industry standard and database-independent connectivity to work with relational databases. A comprehensive post with 12 tutorials explaining different aspects of JDBC API, DataSource and JDBC integration with Spring Framework.

    Java EE Tutorial

    1. Servlet JSP Tutorial

    java ee tutorial, java servlet jsp tutorial Servlet and JSP are the at the heart of Java EE. All the Java EE frameworks are built on top of Servlets and JSPs. A comprehensive post with more than 20 tutorials to help you learn Servlets and JSPs backed with example programs.

    2. Struts 2 Tutorial

    java ee tutorial, java tutorial, struts2 tutorial Struts2 is one of the widely used web application framework. It’s built on top of WebWork and Struts1 and provides flexibility in developing web application. It’s an industry standard MVC framework. The article lists out 20+ tutorials for Struts2 that you can read to learn about Struts2 in detail. All the examples are tested with Struts2 version 2.3.15.1 and most of the tutorials have attached projects that you can download for better understanding.

    3. Spring Framework

    java ee tutorial, java tutorial, spring tutorial Spring is the most widely used Java EE Web application framework. It’s built on the principles of Dependency Injection and Aspect-Oriented Programming. It’s an open-source framework and the best part is the different modules for integration with other frameworks, such as Spring ORM, Spring MVC, etc. This article lists more than 20 tutorials I have written for different components of the Spring framework. The articles are in the order and serve as a great resource for newbie as well as experienced ones. All the project comes with downloadable projects that you can use to learn more. Also, the projects are tested with latest Spring 4 versions and provide XML as well as annotation-based configuration details.

    4. PrimeFaces

    java ee tutorial, java tutorial, primefaces tutorial PrimeFaces is one of the top implementations of JSF 2. PrimeFaces is very easy to use and comes with a lot of components to create an awesome effect on view pages. One of the most useful features of PrimeFaces is the support for creating responsive view pages, that is a must-have for current web pages. We have more than 20 articles on PrimeFaces that you can read in the order to start as a beginner and become a pro.

    5. Hibernate

    java ee tutorial, java tutorial, struts2 tutorial Hibernate is the best Java ORM tool in the current market. Recently I have written a lot on the hibernate framework. So this article is as an index of all the posts. You can go through these in sequence to learn the hibernate from scratch. Most of these come with downloadable projects that you can use to learn more. All the projects are tested with Hibernate 4 version.

    6. Apache Axis 2

    java tutorial, java ee tutorial, axis2 tutorial Apache Axis 2 is one of the widely used SOAP based web services framework. Learn how to use Apache Axis 2 to create SOAP based web services, complete tutorial with client program to test the web service.

    7. Jersey

    java ee tutorial, java tutorial, jersey tutorial Jersey is an open-source JAX-RS implementation for building Restful Web Services. Learn how to use Jersey to create Restful web services with the use of JAXB, Exception Handling approach and Jersey client program to test the web service.

    8. Memcached Tutorial

    Memcached Tutorial Memcached is Free & open source, high-performance, distributed memory object caching system. Memcached is used by almost all the major websites with huge data, for example YouTube, Wikipedia, Twitter etc. Learn how to install memcached server on Windows, Unix, Mac OS and CentOS operating systems and how to use it’s Java and PHP API to connect to memcached server and use it as in-memory cache.

    Java Testing Frameworks

    There are many testing frameworks in Java. I have written a lot on the popular testing frameworks.

    1. JUnit Tutorial

    junit architecture JUnit 5 has brought a lot of new features that were missing in JUnit earlier versions. This article goes in depth of the JUnit components, its architecture, and how to start using JUnit test cases in your java application.

    2. TestNG Tutorial

    TestNG HTML Report Output TestNG is a testing framework for Java application that is inspired from JUnit and NUnit. You will learn about TestNG architecture, how to write TestNG test cases, creating test suites, running test suites through the command line, and many more features of TestNG.

    3. Mockito Tutorial

    Mockito Tutorial Mockito is a java based mocking framework, used in conjunction with other testing frameworks such as JUnit and TestNG. It internally uses the Java Reflection API and allows to create objects of service. A mock object returns a dummy data and avoids external dependencies. It simplifies the development of tests by mocking external dependencies and apply the mocks into the code under test.

    4. EasyMock Tutorial

    EasyMock Tutorial EasyMock allows us to create mock objects of interfaces and concrete classes and specify their behaviors. Then we can use these mocks to write code to test our main classes. This way writing unit tests are simplified as we don’t need to care about external dependencies. References:

    Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

    Learn more about us


    About the authors
    Default avatar
    Pankaj

    author

    Still looking for an answer?

    Ask a questionSearch for more help

    Was this helpful?
     
    JournalDev
    DigitalOcean Employee
    DigitalOcean Employee badge
    February 2, 2022

    The Java platform gives you the ability to write code quickly and still deliver high-performance applications. If you are a professional Java developer and looking for the facts about Java developer salary, then it totally depends on the key skills you hold.

    - java developer

      JournalDev
      DigitalOcean Employee
      DigitalOcean Employee badge
      October 3, 2018

      Thanks a lot for these, man! I’m switching from PHP 7 OOP to Java and it looks like these posts will help a lot. I already started - did around 5 micro-projects and some completed some tutorials too - and I’m pleased to say things are going great! I thought I would like Java - I /love/ Java!

      - fromPHPToJava

        JournalDev
        DigitalOcean Employee
        DigitalOcean Employee badge
        May 13, 2016

        Good on you mate. Your tutorials on Spring framework are really good. Cheers for your knowledge sharing!

        - Bhuman

          JournalDev
          DigitalOcean Employee
          DigitalOcean Employee badge
          May 9, 2016

          Your website continuously re-loaded after every 10-20 seconds. Please check this problem. I continuously follow your blog.

          - Gaurav kwatra

            JournalDev
            DigitalOcean Employee
            DigitalOcean Employee badge
            May 7, 2016

            I’m a follower of your posts.Keep it up.

            - Cyrus Haroon

              JournalDev
              DigitalOcean Employee
              DigitalOcean Employee badge
              April 21, 2016

              Hi Pankaj i am looking for Spring Security ACL real time tutorial. Please help me

              - karan

                JournalDev
                DigitalOcean Employee
                DigitalOcean Employee badge
                March 16, 2016

                Please Send Me Android Related Example in my Emailid

                - vijay patel

                  JournalDev
                  DigitalOcean Employee
                  DigitalOcean Employee badge
                  February 22, 2016

                  Hi Pankaj sir, I read your tutorials. All are very helpfull. Now I am working on your get which get url from google But am not getting tresults. Waiting for replay.

                  - Kailas

                    JournalDev
                    DigitalOcean Employee
                    DigitalOcean Employee badge
                    January 13, 2016

                    Hello Pankaj can you please post the gradle tutorial .

                    - Bharath

                      JournalDev
                      DigitalOcean Employee
                      DigitalOcean Employee badge
                      January 6, 2016

                      Hi Sir, Please add tutorials on Maven as per real time usage like plugins,profiles other high end topics.want to learn from you. Thanks Venkata Sriram

                      - Venkata Sriram

                        Try DigitalOcean for free

                        Click below to sign up and get $200 of credit to try our products over 60 days!

                        Sign up

                        Join the Tech Talk
                        Success! Thank you! Please check your email for further details.

                        Please complete your information!

                        Get our biweekly newsletter

                        Sign up for Infrastructure as a Newsletter.

                        Hollie's Hub for Good

                        Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

                        Become a contributor

                        Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

                        Welcome to the developer cloud

                        DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

                        Learn more
                        DigitalOcean Cloud Control Panel