Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
Masterclass- Programming of Java server pages

Masterclass- Programming of Java server pages

Masterclass - Java server pages, Data Science, Machine Learning,
Created byArun M
Last updated 3/2022
English

What you'll learn

  • Java
  • Java server Pages
  • Data Science
  • Machine Learning

Course content

1 section11 lectures34m total length
  • Introduction3:23
  • Java server pages2:35
  • Architecture Java server pages3:00
  • JSP Lifecycle3:17
  • JSP Environment setup5:20
  • JSP Syntax4:55
  • JSP Actions2:15

    Learn how jsp actions dynamically insert content and navigate between pages, using implicit objects like request, response, session, and application to manage data and output.

  • JSP Directives3:20
  • Include directive1:49
  • Actions JSP2:14

    Master JSP actions by using action elements with an action name attribute to render content through predefined functions and control behavior, using scope values page, request, decision, and application.

  • Reinforcement Learning2:04

Requirements

  • Learn everything you need to know

Description

JavaServer Pages (JSP) is a technology for developing Webpages that supports dynamic content. This helps developers insert java code in HTML pages by making use of special JSP tags, most of which start with <% and end with %>.

A JavaServer Pages component is a type of Java servlet that is designed to fulfill the role of a user interface for a Java web application. Web developers write JSPs as text files that combine HTML or XHTML code, XML elements, and embedded JSP actions and commands.

Using JSP, you can collect input from users through Webpage forms, present records from a database or another source, and create Webpages dynamically.

JSP tags can be used for a variety of purposes, such as retrieving information from a database or registering user preferences, accessing JavaBeans components, passing control between pages, and sharing information between requests, pages etc.

Why Use JSP?

JavaServer Pages often serve the same purpose as programs implemented using the Common Gateway Interface (CGI). But JSP offers several advantages in comparison with the CGI.

  • Performance is significantly better because JSP allows embedding Dynamic Elements in HTML Pages itself instead of having separate CGI files.

  • JSP are always compiled before they are processed by the server unlike CGI/Perl which requires the server to load an interpreter and the target script each time the page is requested.

  • JavaServer Pages are built on top of the Java Servlets API, so like Servlets, JSP also has access to all the powerful Enterprise Java APIs, including JDBC, JNDI, EJB, JAXP, etc.

  • JSP pages can be used in combination with servlets that handle the business logic, the model supported by Java servlet template engines.

Finally, JSP is an integral part of Java EE, a complete platform for enterprise class applications. This means that JSP can play a part in the simplest applications to the most complex and demanding.

Who this course is for:

  • curious about data science