JSP Articles

Page 4 of 8

What is isELIgnored Attribute in JSP?

Samual Sam
Samual Sam
Updated on 30-Jul-2019 7K+ Views

The isELIgnored attribute gives you the ability to disable the evaluation of Expression Language (EL) expressions which has been introduced in JSP 2.0.The default value of the attribute is true, meaning that expressions, ${...}, are evaluated as dictated by the JSP specification. If the attribute is set to false, then expressions are not evaluated but rather treated as static text.Following directive sets an expression not to be evaluated −

Read More

How to write a for loop in a JSP page?

karthikeya Boyini
karthikeya Boyini
Updated on 30-Jul-2019 7K+ Views

Following is the for loop example − FOR LOOP Example JSP Tutorial The above code will generate the following result −JSP Tutorial JSP Tutorial JSP Tutorial

Read More

What is the use of Cookie or hidden fields in JSP?

Ankith Reddy
Ankith Reddy
Updated on 30-Jul-2019 671 Views

CookiesA webserver can assign a unique session ID as a cookie to each web client and for subsequent requests from the client they can be recognized using the received cookie.This may not be an effective way as the browser at times does not support a cookie. It is not recommended to use this procedure to maintain the sessions.Hidden Form FieldsA web server can send a hidden HTML form field along with a unique session ID as follows −This entry means that, when the form is submitted, the specified name and value are automatically included in the GET or the POST ...

Read More

How can we maintain session between Web Client and Web Server?

Arjun Thakur
Arjun Thakur
Updated on 30-Jul-2019 2K+ Views

Following are the few options to maintain the session between the Web Client and the Web Server −CookiesA webserver can assign a unique session ID as a cookie to each web client and for subsequent requests from the client they can be recognized using the received cookie.This may not be an effective way as the browser at times does not support a cookie. It is not recommended to use this procedure to maintain the sessions.Hidden Form FieldsA web server can send a hidden HTML form field along with a unique session ID as follows −This entry means that, when the ...

Read More

What methods of session object is used frequently in JSP and for what purpose?

Chandu yadav
Chandu yadav
Updated on 30-Jul-2019 309 Views

Here is a summary of important methods available through the session object −Sr.No.Method & Description1public Object getAttribute(String name)This method returns the object bound with the specified name in this session, or null if no object is bound under the name.2public Enumeration getAttributeNames()This method returns an Enumeration of String objects containing the names of all the objects bound to this session.3public long getCreationTime()This method returns the time when this session was created, measured in milliseconds since midnight January 1, 1970 GMT.4public String getId()This method returns a string containing the unique identifier assigned to this session.5public long getLastAccessedTime()This method returns the last ...

Read More

Which methods can be used to read HTTP header in your JSP program.

Chandu yadav
Chandu yadav
Updated on 30-Jul-2019 475 Views

The request object provides methods to get HTTP header information including form data, cookies, HTTP methods, etc.Following table lists out the important methods that can be used to read HTTP header in your JSP program. These methods are available with HttpServletRequest object which represents client request to webserver.Sr.No.Method & Description1Cookie[] getCookies()Returns an array containing all of the Cookie objects the client sent with this request.2Enumeration getAttributeNames()Returns an Enumeration containing the names of the attributes available to this request.3Enumeration getHeaderNames()Returns an enumeration of all the header names this request contains.4Enumeration getParameterNames()Returns an enumeration of String objects containing the names of the ...

Read More

Please share a working example of session maintenance in JSP.

George John
George John
Updated on 30-Jul-2019 367 Views

This example describes how to use the HttpSession object to find out the creation time and the last-accessed time for a session. We would associate a new session with the request if one does not already exist.           Session Tracking                   Session Tracking                         Session info          Value     ...

Read More

How to delete Session data in JSP?

Ankith Reddy
Ankith Reddy
Updated on 30-Jul-2019 4K+ Views

When you are done with a user's session data, you have several options −Remove a particular attribute − You can call the public void removeAttribute(String name) method to delete the value associated with the particular key.Delete the whole session − You can call the public void invalidate() method to discard an entire session.Setting Session timeout − You can call the public void setMaxInactiveInterval(int interval) method to set the timeout for a session individually.Log the user out − The servers that support servlets 2.4, you can call logout to log the client out of the Web server and invalidate all sessions ...

Read More

What is isScriptingEnabled Attribute in JSP?

karthikeya Boyini
karthikeya Boyini
Updated on 30-Jul-2019 371 Views

The isScriptingEnabled attribute determines if the scripting elements are allowed for use.The default value (true) enables scriptlets, expressions, and declarations. If the attribute's value is set to false, a translation-time error will be raised if the JSP uses any scriptlets, expressions (non-EL), or declarations.The attribute's value can be set to false if you want to restrict the usage of scriptlets, expressions (non-EL), or declarations −

Read More

What is a config Object in JSP?

Arjun Thakur
Arjun Thakur
Updated on 30-Jul-2019 473 Views

The config object is an instantiation of javax.servlet.ServletConfig and is a direct wrapper around the ServletConfig object for the generated servlet.This object allows the JSP programmer access to the Servlet or JSP engine initialization parameters such as the paths or file locations etc.The following config method is the only one you might ever use, and its usage is trivial −config.getServletName();This returns the servlet name, which is the string contained in the element defined in the WEB-INF\web.xml file.

Read More
Showing 31–40 of 77 articles
« Prev 1 2 3 4 5 6 8 Next »
Advertisements