Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

This application is a simple Hello World application which will output Hello World!! on the browser. It needs a Dynamic Web project and a JSP associated with it.

...

Creating a Dynamic Web Project using Eclipse

  1. Launch Eclipse

...

  1. and Switch to Java EE perspective.


    Image Added


    Image Added


  2. Right Click under project explorer and Select Dynamic Web Project as shown in the figure


    Image Added


  3. Name the project as HelloWorld.


    Image Added


  4. Keep default values for all the fields and Select Finish.


    Image AddedCreate a dynamic web project with the name "HelloWorld". See How to create a dynamic Web Project using Eclipse


    Adding a JSP to the project

...

  1. Right Click on the project HelloWorld and create a new JSP as shown in the figure.





  2. Give the name as hello.jsp and Select Finish.next. Select Finish on the next screen





  3. Modify the code of hello.jsp as follows
    Code Block
    titlehello.jsp
    borderStylesolid
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>Hello World</title>
    </head>
    <body>
    Hello World!!
    </body>
    </html>
    

...

  1. Deploy the application on the server.





  2. launch the application using http://localhost:8080/HelloWorld/hello.jsp





  3. This will display HelloWorld!! on the browser window.