Top "Jsp" questions

JSP (JavaServer Pages) is a Java-based view technology running on the server machine which allows you to write template text in (the client side languages like HTML, CSS, JavaScript and so on) and interact with backend Java code.

Servlet for serving static content

I deploy a webapp on two different containers (Tomcat and Jetty), but their default servlets for serving the static content …

java jsp servlets jakarta-ee
How to use relative paths without including the context root name?

To working my static file (CSS, JS) I have to write absolute path like /AppName/templates/style/main.css. Is …

jsp servlets resources relative-path contextpath
Set textbox to readonly and background color to grey in jquery

Good day, I would like to make a text box in my jsp to become readonly and its background color …

javascript jquery jsp background-color
How do I pass JavaScript values to Scriptlet in JSP?

Can anyone tell me how to pass JavaScript values to Scriptlet in JSP?

java javascript jsp scriptlet
Evaluate if list is empty JSTL

I've been trying to evaluate if this array list is empty or not but none of these have even compiled: &…

java jsp jstl
How to convert HTML to PDF using iText

import java.io.File; import java.io.FileOutputStream; import java.io.OutputStream; import com.itextpdf.text.Document; import com.itextpdf.…

java html jsp itext
How do I get whole and fractional parts from double in JSP/Java?

How do I get whole and fractional parts from double in JSP/Java ? If the value is 3.25 then I want …

java math jsp
Convert and format a Date in JSP

From my JSP Page, I am getting Date in this format. Fri May 13 2011 19:59:09 GMT 0530 (India Standard Time) How can I …

jsp date-format
Increment counter with loop

This question is related to my previous question : Jsp iterate trough object list I want to insert counter that starts …

java jsp jstl
What does this expression language ${pageContext.request.contextPath} exactly do in JSP EL?

I have a web app, where I have different navigation anchor tags such as Home, Profile and etc. What I …

java jsp el