Tagged Questions
JSP tags are a feature of Java Server Pages that allow the encapsulation of view-specific logic and separation of presentation and business concerns.
10
votes
4answers
647 views
Effective way to handle singular/plural word based on some collection size
There are many instances in my work projects where I need to display the size of some collection in a sentence. For example, if the collection's size is 5, it will say "5 users". If it is size of 1 or ...
7
votes
2answers
1k views
Is there any good reason to use <rtexprvalue>false</rtexprvalue> in JSP tags?
Is there any good reason to disallow scriptlet or EL expression to be inserted as attribute value?
Let's say we have tag:
<tag>
<name>mytag</name>
...
7
votes
4answers
3k views
How to Properly Escape Triply Nested Quotes in JSP
We just upgraded Tomcat and the newer Tomcat doesn't like nested quotes in the tag, so we have to alternate between single and double quotes. For example,
We used to have,
<form id="search" ...
7
votes
7answers
6k views
Java constants in JSP
I have a class that defines the names of various constants, e.g.
class Constants {
public static final String ATTR_CURRENT_USER = "current.user";
}
I would like to use these constants within a ...
5
votes
5answers
879 views
Configure Eclipse to use Javascript editor
When editing JSPs in Eclipse, the contents of <script> tags - i.e. Javascript code - is properly color coded and formated.
For reasons that go beyond the scope of this question, I have created ...
5
votes
2answers
610 views
Java generics: get class of generic method's return type
Background
I once wrote this method:
private <T> SortedSet<T> createSortedSet() {
return new TreeSet<T>();
}
It's supposed to be called like this:
Set<String> set = ...
5
votes
1answer
2k views
Default value on JSP custom-tag attribute
When defining an attribute for a custom JSP tag, is it possible to specify a default value? The attribute directive doesn't have a default value attribute. Currently I'm making do with:
<%@ ...
5
votes
1answer
195 views
Where do I put the .tld file so that the resulting JAR file built with maven2 is properly packaged?
I currently have the following directory structure for my code:
src
|-- main
| `-- java
| `-- com
| `-- upthescala
| `-- tags
| `-- ...
5
votes
1answer
702 views
How to get EL (Expression Language) content assist (autocomplete) in JSP / JSP Tags in Eclipse?
Is there a way, via configuration, upgrade or a plugin to get content assist in JSP EL expressions?
e.g.
${CTRL+SPACE ...
or
${pageContext.CTRL+SPACE ...
etc...
5
votes
3answers
1k views
Custom rendering in JSP based on type of class without instanceof
How would you properly render a list of objects in jsp with differing types? Say, for example, I have to render these different objects in a specified order.
One way could be to use a common type ...
5
votes
3answers
3k views
JSP Tag Recursion
I am implementing a tree tag for one of my practice projects, where I would display the contents of a directory in the form of a tree (recursively). I had implemented a similar requirement as a Custom ...
5
votes
6answers
5k views
How do i pass an object to a JSP tag
I have a JSP page that contains a scriplet where i instantiate an object. I would like to pass that object into the JSP tag without using any cache.
For example i would like to accomplish this:
...
4
votes
3answers
453 views
JSP tags + scriptlet. How to enable scriptlet?
I have a page which uses a tag template.
My web.xml is very basic.
I simply want to run some code in the page.
And no, I'm not interested in tags or other alternative. I want to use the bad-practice ...
4
votes
2answers
173 views
Do tags written in Java (i.e., extending BodyTagSupport or TagSupport) perform better than .tag files?
At work some developers are changing .tag files into tags that are written in Java. The reason was performance. They stated that there was a ten-fold increase in performance when comparing .tag files ...
4
votes
3answers
122 views
How can I pass a server side variable into a core tag in JSP?
This expression tag outpus a correct value for me
<%=drug.NonAuthoritative%>
while I cant recover the value of drug.NonAuthoritative for use in a C tag
<c:if ...
4
votes
1answer
377 views
J2EE: Default values for custom tag attributes
So according to Sun's J2EE documentation (http://docs.sun.com/app/docs/doc/819-3669/bnani?l=en&a=view), "If a tag attribute is not required, a tag handler should provide a default value."
My ...
4
votes
2answers
2k views
Checking attribute exists in JSP
I have some classes which extends a superclass, and in the JSP I want to show some attributes of these classes. I only want to make one JSP, but I don't know in advance if the object has an attribute ...
4
votes
3answers
7k views
How to inject spring beans into a jsp 2.0 SimpleTag?
Currently my jsp 2.0 tags that need spring beans use this code:
ac = WebApplicationContextUtils.getWebApplicationContext( servletContext);
ac.getBeansOfType(MyRequestedClass.class);
The I just get ...
4
votes
1answer
7k views
Spring MVC tag interaction with custom tag
I have a JSP that is using Spring:form tags to bind controls to a command object.
I would like to modify it as follows: if [some condition is true] than display the controls; otherwise, just display ...
4
votes
4answers
2k views
In Spring/JSP, where should formatting be performed?
I'm using Spring, but this question applies to all JSP-controller type designs.
The JSP page references data (using tags) which is populated by the corresponding controller. My question is, where is ...
4
votes
5answers
3k views
JSP bean tag for property that might not exist
In JSP I can reference a bean's property by using the tag
${object.property}
Is there some way to deal with properties that might not exist? I have a JSP page that needs to deal with different types. ...
4
votes
3answers
24k views
jsp:forward in Java without using JSP tag?
Is there a pure-Java equivalent to <jsp:forward page="..." /> that I can use within a <% ... %> block?
For example, I currently have a JSP page something like this:
<%
String ...
4
votes
4answers
9k views
Using JavaScript within a JSP tag
I've seen this question regading the importing of js-files related to the tag content itself. I have a similar problem, here I have a jsp tag that generates some HTML and has a generic ...
4
votes
2answers
2k views
JSP Custom Tag Library vs JSP2 Tag Files
Can anybody explain the idea behind JSP custom tag libraries and the JSP 2 tag files?
Are they just different ways to do the same thing?
How do they compare? What are their pros and cons, and which ...
3
votes
2answers
405 views
default value in struts2 list box
we have list box.This will show the different states in US. I want state "LA" should be as preselected.But I dont know the position of "LA" in the list. It may vary.We are using the following script ...
3
votes
1answer
337 views
Eclipse Code Hinting on JSP with Custom Tags (taglib)
I'm developing a JSP tag that have an attribute that works with a set of possible values.
I don't need to enforce this values, but I would like my IDE (Eclipse) do some code hinting or ...
3
votes
2answers
153 views
<c:choose> tag in JSP
I want to write Shopping basket is empty if count value of items in is 0. Here was my unsuccessful attempt. I was wondering how to do this.
<c:forEach items="${lstCart}" var="cartItem" ...
3
votes
0answers
503 views
How to get timezone from a request [closed]
Possible Duplicate:
Can You Determine Timezone from Request Variables?
Hi Guys,
I have a requirement where in i have to convert long value (that i get from model by System.currentmillis ...
3
votes
2answers
1k views
Testing if a User is Logged in Via JSP/Spring-MVC
Using Spring 3 MVC and JSP, I simply want to test if a user is logged in, I'm not interested in using Spring Security currently
<jsp:useBean id="myAppUser" type="com.xxx.MyUser" beanName="myUser" ...
3
votes
2answers
954 views
Custom JSP tag - How do I get the body of the tag?
I have a custom jsp tag like this:
<a:customtag>
The body of the custom tag...
More lines of the body...
</a:customtag>
In the custom tag, how can I get the text of what the ...
3
votes
1answer
120 views
Custom JSP tag - detect existence of other instances
Is it possible for a custom JSP tag to detect if there are other instances of itself within a page? If so, what's the preferred way to do this? My tag's output needs to be conditional dependent upon ...
3
votes
2answers
3k views
Passing a Java object value in Custom JSP tag
I'm trying to pass a java variable from a custom jsp tag(Im using struts2 here to get the variable from the java class). Here is the error I'm getting.
javax.servlet.ServletException: ...
3
votes
1answer
1k views
Custom JSTL tags with body
We are going to use JSTL and custom JSTL-tags for some sort of template-engine in our JSP/spring-project.
Is there a way to create a tag that looks similar like this:
<div id="site">
...
3
votes
2answers
475 views
Creating a List in EL
Suppose I have a custom tag that takes a List of Strings:
<%@ attribute name="thelist" type="java.util.List<java.lang.String>"
required="true" %>
How can I create this ...
3
votes
2answers
1k views
3
votes
3answers
1k views
3
votes
4answers
871 views
JSP-based Templating with Spring
I'm using Spring's MVC with JSP views. Every JSP page has similar structure - headers, content, footers, perhaps a sidebar, etc. Looking around for "best practices" people seem to "include" footers ...
3
votes
4answers
942 views
How do I make JSP tag files NOT ignore all whitespace?
I'm really stumped on this one. I want to output a list and have the tag file take care of commas, singular versus plural, etc. but when I display the list it completely ignores whitespace so ...
3
votes
2answers
2k views
Importing JavaScript in JSP tags
I have a .tag file that requires a javascript library (as in a .js file).
Currently I am just remembering to import the .js file in every JSP that uses the tag but this is a bit cumbersome and prone ...
2
votes
2answers
148 views
Best gui implementation with Spring MVC
I am not an expert on Spring. I have used JSF components ice faces, prime faces etc. And also Asp.Net components DevExpress, Teleric, etc.
Of course GUI implementation of an app depends on needs of ...
2
votes
2answers
127 views
Is there an ehcache jsp tag?
In a current project of mine, JSPs are getting huge (lots of jstl end el logic, no Java), and due to increasing traffic, caching on many levels has become a necessity. Some components need to be ...
2
votes
2answers
328 views
Can a JSP tag file access its calling JSP's PageContext?
If I do:
<% pageContext.setAttribute("foo", "bar"); %>
<custom:myTag/>
it seems like I should be able to do:
<%= pageContext.getAttribute("foo") %>
inside of myTag.tag ... but ...
2
votes
2answers
363 views
How to get url path from jsp in Spring MVC framework
To remove the language toggle from the page view(Comfirmation Page)
I found this code but it doesn't work in Spring MVC
<c:if ...
2
votes
1answer
378 views
How to override <struts:text name=“…”/> (Struts 2 Text jsp tag) to print out the name attribute in an HTML comment?
When you use a <struts:text name="..."/> Struts 2 Text jsp tag, you get a text from a .properties file in the page.
For example, if the .properties-file contains
foo.bar = This is the text.
...
2
votes
2answers
1k views
Can't get any output from the <spring:hasBindErrors> taglib
I'm writing a Spring 3 MVC based web app, using JSPs for my view layer. I'm struggling on a particular area where I'm trying to report BindingResult errors for a particular Model object in a JSP. This ...
2
votes
3answers
118 views
highlighting the textbox without using javascript or jquery
can we highlight our textbox without using javasript/jquery or css ?if yes then how? i am on jsp page, can jsp help?
2
votes
4answers
509 views
How to write tag in my spring project?
I want to write my tag (extends TagSupport) in my spring framework. In my tag class, will use some service which should auto inject by spring. But I always get null, seems spring can't inject service ...
2
votes
3answers
3k views
JSP/servlet read parameters from properties file?
My JSP pages need to display different information depending on which environment they're in (dev, production, sandbox, etc). I want to have a properties file for each of these environments that ...
2
votes
1answer
382 views
Extending JSP Custom Tags
How do you extend an existing JSP custom tag?
As you know, a custom tag consists of two parts, an implementation class and a TLD file. I can extend the parent custom tag's class, but how do you ...
2
votes
1answer
363 views
Calling a custom JSP tag from JSTL tag
I'm trying to call my custom tag from the JSTL tag <c:url>.
Because of the quotes, the custom tag is shown as a string instead of a tag.
Can I use an escape character here?
<img align="left" ...