In the J2EE (Java 2 Platform, Enterprise Edition) architecture’s presentation tier, servlets and JSPs (JavaServer Pages) generally render data derived from the business logic tier as HTML for browser ...
Basically, JSP deals with presenting data. Servlets and Beans deal with both presenting data or processing data. EJB's generally deal with connecting to a database and performing buisiness logic, ...