Different types of java applications

What all different types of applications we can create by using Java? this is what many people question. To get the answer for your question continue with this article. By using java language, we will implement majorly 4 types of applications. That are,
  • Standalone Applications
  • Web Applications
  • Enterprise Applications
  • Mobile Applications
Short discussion about these applications, see in below

1. Standalone Applications:
It is also known as Desktop applications or windows based applications. Applications which we need to install in each of the machines like Media player, Antivirus are standalone applications. AWT and Swing are used in java for creating the Standalone applications.

2. Web Applications:
An application that runs on the server side and creates dynamic page, is called Web Application. Currently Servlets, JSP, Struts, JSF are used to develop web applications.

3. Enterprise Applications:
Applications which are distributed in nature such type of applications are enterprise applications. It has the advantage of high security, load balancing and clustering. JavaEE, EJB (Enterprise Java Beans) are used to develop Enterprise applications.

4. Mobile Applications:
Applications which are created for mobile usages, such applications are Mobile applications. Present days, Android and Java ME are used for creating mobile applications.

Comments

Popular posts from this blog

Hibernate auto increment with example

how to count the page views by using JSP

Multithreading in java with example

How to retrieve data from table by using JDBC with example

Prime, Fibonacci and Factorial number with example in java

How to insert images into database using JDBC?

How to sort list of objects in java with examples

String interview questions and answers

Exception in thread "main" java.lang.NoClassDefFoundError: javax/transaction/SystemException

Store file into table by using JDBC with example