Creating a Basic J2EE Servlet with IRAD for WebSphere

A step-by-step tutorial on building a simple J2EE servlet using IRAD in the WebSphere environment. For the full high-resolution tutorial, visit: http://www.thebookonhibernate.com/j2e...

Creating a Basic J2EE Servlet with IRAD for WebSphere
javaprogrammingcbts
7.7K views β€’ Aug 5, 2008
Creating a Basic J2EE Servlet with IRAD for WebSphere

About this video

You can see the full screen, high resolution tutorial, here:


http://www.thebookonhibernate.com/j2e...

Creating a Simple Servlet Using IRAD

This free, multimedia tutorial shows you how to use IBM's Rational Application Developer (IRAD) to create a J2EE project, a Servlet, and a WebSphere Test Server on which you can proudly run your newly birthed Servlet.

If you found something helpful here, please do your part and help support the site. Link to us, buy some books, support our sponsors, tell your developer friends about us, and remember: Happy Java!

package com.examscam.servlet;

import java.io.IOException;
import javax.servlet.Servlet;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class CountrySnooper extends HttpServlet implements Servlet {

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String country = request.getLocale().getCountry();
if (!country.equals("CA")){
response.getWriter().print("Hey, lets go for a Tim Hortons coffee!");
}
else {
response.getWriter().print("Ugh...Guess we settle for Starbucks");
}
}
}



http://www.thebookonhibernate.com/j2e...

Please check out my SCJA Java Certification Mock Exam website:

http://www.scja.com/associate/

And for Hibernate and JPA tutorials, check out: http://www.thebookonhibernate.com
Category: Education
Tags:
IRAD IBM WebSphere Tutorial Java J2EE Rational Application Developer Servlet

Tags and Topics

Browse our collection to discover more content in these categories.

Video Information

Views

7.7K

Likes

9

Duration

5:15

Published

Aug 5, 2008

User Reviews

3.8
(1)
Rate:

Related Trending Topics

LIVE TRENDS

Related trending topics. Click any trend to explore more videos.