Tagged 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.
120
votes
15answers
12k views
How to avoid Java Code in JSP-Files?
I'm new to Java EE and I know that something like the following three lines
<%= x+1 %>
<%= request.getParameter("name") %>
<%! counter++; %>
is an oldschool way of coding and in ...
89
votes
9answers
3k views
I never really understood: what is CGI?
CGI is a Comman Gateway Interface. As the name says, it is a "common" gateway interface for everything. It is so trivial and naive from the name. I feel that I understood this and I felt this every ...
49
votes
9answers
7k views
Java web development, what skills do I need? [closed]
I want to learn, at least at a basic level, how to build Java web applications (coming from a .NET background).
Meaning, I would like to be able to build, deploy a simple CMS type application from ...
48
votes
1answer
7k views
Hidden features of JSP/Servlet
I am interested in your tricks etc used when writing JSP/Servlet. I will start:
I somewhat recently found out how you can include the output of one JSP tag in an attribute of another tag:
...
48
votes
4answers
15k views
What is the difference between JSF, Servlet and JSP?
Is JSP = Servlet? And JSF = Pre-build UI based JSP (like asp.net web control)?
47
votes
3answers
6k views
Design Patterns web based applications
I am designing a simple web based application. I am new to this web based domain.I needed your advice regarding the design patterns like how responsibility should be distributed among Servlets, ...
46
votes
11answers
5k views
Eclipse webtools project (WTP) and its performance / quality
Our company is using eclipse since several years now (we are using WTP since release 0.7)
I am currently evaluating eclipse 3.6.2 with WTP 3.2.3 which should replace eclipse 3.4.2 with WTP 3.0.4 as ...
40
votes
12answers
27k views
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 have a different way of handling the URL structure I want to use (details).
...
35
votes
10answers
756 views
Looking for a question that combines the understanding of few web technologies
I am teaching a web development course at a CS department, I wrote most of the final test by now, each question focus on a specific feature or a specific technology,
I wonder if you can think ...
32
votes
3answers
43k views
JSTL access a map value by key
I have a Map keyed by Integer. Using JSTL, how can I access a value by its key?
Map<Integer, String> map = new HashMap<Integer, String>();
map.put(1, "One");
map.put(2, "Two");
map.put(3, ...
31
votes
9answers
39k views
Is there a good JSP editor for Eclipse?
I need a nice JSP editor plugin for Eclipse. What are my choices?
29
votes
17answers
16k views
PHP vs JSP: Which Should I Learn? [closed]
I already have some knowledge in Java and I was looking to start writing scripts for web development. I was wondering if I should just learn .jsp since I already have a Java background or is PHP that ...
23
votes
8answers
24k views
Access Enum value using EL with JSTL
I have an Enum called Status defined as such:
public enum Status {
VALID("valid"), OLD("old");
private final String val;
Status(String val) {
this.val = val;
}
public ...
22
votes
4answers
23k views
How do you get the length of a list in the JSF expression language?
How would I get the length of an ArrayList using a JSF EL expression? "#{MyBean.somelist.length}" does not work.
20
votes
5answers
1k views
Is anyone still using JSTL?
I was about to pick up some Java web programming since not having touched Java for a couple of years. I picked up an fairly old O'Reilly book that was sitting on my bookshelf (Java Server Pages 3rd ...
19
votes
1answer
12k views
Evaluate empty or null JSTL c tags
How can I validate if a String is null or empty using the c tags of JSTL?
I have a variable of name var1 and I can display it, but I want to add a comparator to validate it.
<c:out ...
19
votes
6answers
4k views
OpenID Java
Is there an openID implementation in Java? I would like to use this in a tomcat application.
18
votes
1answer
1k views
Difference between JSP EL, JSF EL and Unified EL
HI,
I would like to know the detailed difference between the Expression Languages(EL).
There is JSP EL, JSF EL and Unified EL.
I would like to know the history behind the EL and what is the latest ...
18
votes
10answers
28k views
Eclipse “cannot find the tag library descriptor”
I have a JEE project which build fine with Ant, deploys perfectly to JBoss, and runs without any trouble. This project includes a few custom tag libraries, which are also working without any ...
18
votes
6answers
16k views
Should I be doing JSPX instead of JSP?
Using JDeveloper, I started developing a set of web pages for a project at work. Since I didn't know much about JDev at the time, I ran over to Oracle to follow some tutorials. The JDev tutorials ...
17
votes
1answer
2k views
Where's the official JSP tutorial
I now have to remember how to create custom tag libraries, and since I'm using servlet 3.0 I decided to see the official JavaEE6 tutorial. Much to my surprise there is nothing about JSP in the JavaEE6 ...
17
votes
2answers
22k views
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:
<c:if test="${myObject.featuresList.size == 0 }">
<c:if ...
16
votes
4answers
3k views
Will a 302 redirect maintain the referer string?
I need to redirect the user from one page to another, but I need to maintain the original referer string. So, for example, if they start out on http://www.othersite.com/pageA.jsp, click a link that ...
15
votes
4answers
3k views
JSP tricks to make templating easier?
At work I've been tasked with turning a bunch of HTML files into a simple JSP project. It's really all static, no serverside logic to program. I should mention I'm completely new to Java. JSP files ...
15
votes
6answers
6k views
JSP vs Velocity what is better?
What is better between JSP and velocity in
- Performance
- Ease of use
- Ease of creating reusable components
- Availability of open source 3rd parties
- IDE support
15
votes
3answers
51k views
How do you import classes in JSP?
I am a complete JSP beginner. I am trying to use a java.util.List in a JSP page. What do I need to do to use classes other than ones in java.lang?
15
votes
5answers
12k views
Strip whitespace from jsp output
How can I strip out extra whitespace from jsp pages' output? Is there a switch I can flip on my web.xml? Is there a Tomcat specific setting?
14
votes
9answers
5k views
Alternatives to JSP for Spring MVC view layer
I'm looking to create a new app from scratch and will probably use Spring MVC and possibly Spring Web Flow. The projects created by Spring Roo use Spring MVC and optionally Web Flow. What are some ...
14
votes
2answers
12k views
How to upload files in JSP/Servlet?
How can I parse an uploaded file using Apache Common FileUpload? I tried this:
FileItemFactory factory = new DiskFileItemFactory();
ServletFileUpload upload = new ServletFileUpload(factory);
List ...
14
votes
2answers
2k views
Getting the actual jsp line number from a stack trace line number?
Here is the stacktrace:
...
org.apache.jsp.showcustomer_jsp._jspService(showcustomer_jsp.java:128)
org.apache.jasper.runtime.HttpJspBase.service(Unknown Source)
This is what I do:
Get the line ...
14
votes
7answers
4k views
How can I map a “root” Servlet so that other scripts are still runnable?
I'm trying to build a Servlet that calls a JSP page similar to the following:
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws IOException, ServletException {
...
14
votes
7answers
4k views
JSP template inheritance
Coming from a background in Django, I often use "template inheritance", where multiple templates inherit from a common base. Is there an easy way to do this in JSP? If not, is there an alternative to ...
13
votes
5answers
6k views
Java EE 6: JSF vs Servlet + JSP. Should I bother learning JSF?
I am trying to get familiar with Java EE 6 by reading http://java.sun.com/javaee/6/docs/tutorial/doc/gexaf.html. I am a bit confused about the use of JSF.
Usually, the way I develop my Web App would ...
13
votes
5answers
19k views
Evaluate list.contains string in JSTL
I need to hide an element if certain values are present in the JSP
The values are stored in a List so I tried:
<c:if test="${ mylist.contains( myValue ) }">style='display:none;'</c:if>
...
13
votes
1answer
15k views
How can I escape special HTML characters in JSP?
Before I go and create a custom tag or Java method to do it, what is the standard way to escape HTML characters in JSP?
I have a String object and I want to display it in the HTML so that it appears ...
13
votes
12answers
3k views
When do you use a JSP and when a Servlet?
I have an application that sends the customer to another site to handle the payments. The other site, outside of the customer, calls a page on our server to let us know what the status is of the ...
13
votes
13answers
27k views
How can I replace newline characters using JSP and JSTL?
I have a list of bean objects passed into my JSP page, and one of them is a comment field. This field may contain newlines, and I want to replace them with semicolons using JSTL, so that the field can ...
12
votes
1answer
10k views
12
votes
8answers
14k views
Java error: Only a type can be imported. XYZ resolves to a package
I get the error: "Only a type can be imported. XYZ resolves to a package."
Someone has explained the cause here but I am not sure what I supposed to do to fix this. FYI: I am using Eclipse. I have ...
12
votes
3answers
4k views
workaround for GWT+Jetty JSP compiler issue? (Java 1.5 source level not recognized)
As this thread shows, there seems to be an issue getting JSPs to compile in GWT hosted mode with the new Jetty server:
2. ERROR in /tmp/Jetty_0_0_0_0_8080_war____ut4fm1/jsp/org/apache/jsp/
...
12
votes
5answers
32k views
JSP <c:out> tag
Writing a JSP page, what exactly does the <c:out> do? I've noticed that the following both has the same result:
<p>The person's name is <c:out value="${person.name}" /></p>
...
11
votes
4answers
962 views
Suppressing Java unchecked warnings in JSP files
I have a legacy webapp which uses jstl and Struts 1 tags. When I pre-compile the JSP files with Java 5/6, the jstl and Struts 1 tags throw warnings about "unchecked or unsafe operations". For example, ...
11
votes
2answers
4k views
Get request URL from jsp
How can i get request URL from JSP.
If i use following code within JSP i get -
System.out.println("servlet path= " + request.getServletPath());
System.out.println("request URL= " + ...
11
votes
2answers
935 views
Spring+JSP url building best practices
I wonder if there are any good practices for addressing Spring controllers in JSP.
Suppose I have controller:
@Controller
class FooController {
// Don't bother about semantic of this query right ...
11
votes
3answers
2k views
Escaping html in Java
How do I make sure I don't escape something twice?
I've heard that its good practice to escape values as you receive them from a form, and also escape when you output. That way you have two chances ...
11
votes
7answers
23k views
Format Date with fmt:formatDate JSP
I am trying to format a date with:
<fmt:formatDate value="${newsletter.createdOn}" pattern="MM/dd/yyyy"/>
newsletter is an object with a createdOn property which is java.util.Date.
When I ...
10
votes
1answer
141 views
How can I detect dead code in an enterprise Java project (Java + JSP + Javascript)?
Does anyone know of a tool for detecting dead code in a Java EE project?
I've looked into lots of tools that do this well for pure Java projects, but nothing seems to really handle projects which ...
10
votes
9answers
3k views
Password encryption at client side [closed]
Possible Duplicate:
About password hashing system on client side
I have to secure the passwords of my web site users. What I did was use MD5 encryption hashing in server side. But the ...
10
votes
5answers
4k views
How to use Servlets and Ajax?
I'm very new to web apps and Servlets and I have the following question:
Whenever I print something inside the servlet and call it by the webbrowser, it returns a new page containing that text. Is ...
10
votes
5answers
971 views
Why should I learn and use struts?
I'm a java developer, not seasoned, but I am familiar with most concepts reasonably well.
I recently built a website using Tomcat/JSP (~30 dynamic pages). I made the newbie mistake of including large ...