J2EE Web Application Characteristics

J2EE web applications usually use a combination of Servlets and JSP. J2EE web applications have evolved to use the Model View Controller (MVC) design pattern. MVC is a way to structure code to separate the concerns of an application. In J2EE applications, the model usually represents the business logic and data. This layer is usually implemented using technology such as EJB, JDBC, and JavaBeans. The controller layer is usually implemented using Servlets. A Servlet will usually extract HTTP input and translate it to some specific input for the model. The controller will then invoke model objects. Once done, the Servlet will forward the request to a JSP. The JSP will extract dynamic data from the model for display ...

Get IBM WebSphere: Deployment and Advanced Configuration now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.