Tagged Questions

TagLibs is a shortened form of "Tag Libraries". Tag Libraries are libraries that include "tags". Tags are usually used to address presentation concerns and encapsulate view-specific logic.

learn more… | top users | synonyms

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 ...
13
votes
2answers
2k views

Grails: Templates vs TagLibs

In Grails, there are two mechanisms for modularity in the view layers : template and taglib. While I am writing my own Grail app, I am often facing the same question when I need to write an UI ...
9
votes
5answers
2k views

GWT/Eclipse/Jetty issue: Jasper can't resolve tag libraries

I'm trying to get GWT Hosted mode working in Eclipse, à la this HOWTO. Servlets work fine, as does my GWT code, but all my JSPs fail because with errors such as the following: [WARN] ...
8
votes
5answers
18k views

Concatenate strings in JSP EL?

I have a List of beans, each of which has a property which itself is a List of email addresses. <c:forEach items="${upcomingSchedule}" var="conf"> <div class='scheduled' ...
7
votes
2answers
3k views

Grails link taglib use outside of GSP

I'm trying to use the taglib call there's attribute parameters, but also the stuff inside the tag itself which the link taglib uses. I can't find the attribute to pass in to a g.link() call to have ...
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
1answer
337 views

JSP: Tag library Intellisense problem in Eclipse

I am trying to develop a JSP application using Eclipse 3.6 Helios. Now I have defined a Tag Library Definition called DiceFunctions.tld inside the WEB-INF folder, and then declared this in a jsp page ...
4
votes
3answers
5k views

Running CMake on Windows

I am currently trying to get CMake to run on my Windows 7 (64-bit) system. I want to compile TagLib for later use with a Qt application I am working on. I would like to compile it with MinGW (not ...
4
votes
2answers
1k views

Compiling static TagLib 1.6.3 libraries for Windows

I am having a super hard time compiling and using TagLib 1.6.3 in my Qt project. I've tried everything I can think of. TagLib claims that it is supported through CMake but I'm not having any luck. ...
4
votes
2answers
693 views

JSP in OSGi: How to load TLD from bundles?

We're building a JSP web application, which runs inside the Apache Felix OSGi container (the web app itself is a OSGi Bundle). Now, we're facing the following problem: According to the JSP 2.0 Spec, ...
4
votes
2answers
1k views

Custom Facelets components and attributes defined in taglib

Defining custom components in Facelets is easy and quick but there's one thing I can't figure out. Is it possible with Facelets to define what attributes my custom component has? I.e: I've created a ...
4
votes
2answers
3k views

Why use <g:textField /> in Grails?

What is the reason to use g:textField in Grails if you're already familiar with standard HTML form tags? If I understand correctly the following two markup alternatives are equivalent: <input ...
4
votes
1answer
2k views

Testing grails taglib

Grails 1.1. My custom tag: class MyTagLib { static namespace 'ct' def textField = {attrs -> def bean = attrs.remove('bean') def field = attrs.remove('field') attrs.name = field ...
3
votes
0answers
85 views

Nesting custom taglibs in grails 2.0

I expected the following to ouput 1 2 GSP <test:test1> <test:test2> ${test1} ${test2} </test:test2> </test:test1> TagLib class TestTagLib { static ...
3
votes
3answers
97 views

Is there any reason to use JavaScript library plugins in grails that expose the given library via TagLibs instead of just using it directly?

If you search the grails plugin site, you'll find lots of plugins for JQuery and other JavaScript libraries. Most of these expose the given JavaScript library functionality through Grails TagLibs. ...
3
votes
1answer
107 views

How to make TagLib# work on a file with the wrong extension?

I'm using TagLib# to retrieve meta data from my MP4 file. So far, so good, everything works fine, until I spotted a file with a "wrong" extension" that made LagLib# puke. I discovered this file was ...
3
votes
2answers
173 views

Ellipsis (abbreviate text) with JSP / EL

I was wondering what is the best way to implement an ellipsis abbreviation with JSP / Expression Language. For now, I've been using fn:substring, which is ok, but I would like to have the three dots ...
3
votes
1answer
240 views

debugging osgi classloader issues

Is there some tool or recipes for debugging osgi classloading issues ? Specifically interaction of osgi classloaders with java ee container classloaders and versions. I looked into the spec- a little ...
3
votes
1answer
360 views

transfer jpeg from c++ to android (java)

I am struggling with the transfer of a simple jpeg file inside an ID3v2 tag from c++ over a TCP socket to java (Android). The library "taglib" offers to extract this file and I am able to save the ...
3
votes
4answers
895 views

How do I use TagLib to read/write coverart in different audio formats?

I would like to use TagLib to read/write coverart especially for mp3 AND ogg files, but I couldn't find any examples. Could someone point me to some examples? Where should I look to find more ...
3
votes
1answer
165 views

is any jsp 2.0 implementation forcing an error if tagdir attribute has no trailing slash?

In JSP 2.0 specification it says about "tagdir" attribute of the taglib directive (JSP.1.10.2): Indicates this prefix is to be used to identify tag extensions installed in the /WEB-INF/tags/ ...
3
votes
2answers
617 views

Differences in length in TagLib# (C#) and TagLib (C++)

I am currently in the process of moving my C# application over to Qt / C++. I'm running into problems with lengths from TagLib. I find it odd that TagLib# returns audio durations in milliseconds, ...
3
votes
1answer
356 views

Grails: Getting current View name from within a Taglib

Is there any way too find out the current view (or gsp file) that is being executed? RequestURI doesn't work due to URL Mappings and forwards. I'm trying to retrieve resources dynamically based on ...
3
votes
3answers
823 views

JSP Custom Taglib: Nested Evaluation

Say I have my custom taglib: <%@ taglib uri="http://foo.bar/mytaglib" prefix="mytaglib"%> <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%> <mytaglib:doSomething> Test ...
3
votes
2answers
637 views

Grails: Invoking one taglib from within another

I want to define my own taglib that will use the g:datePicker to generate some of it's output. class MyTagLib def myTag = {attrs -> // I need to invoke the `datePicker` tag of the the ...
3
votes
4answers
6k views

cannot load JSTL taglib within embedded Jetty server

I am writing a web application that runs within an embedded Jetty instance. When I attempt to execute a JSTL statement, I receive the following exception: org.apache.jasper.JasperException: ...
3
votes
2answers
2k views

Should i use JSTL in JSF 2 xhtml pages?

I would like to bind a backing bean's field to the selected value of a selectOneListbox. This value could be null, so i want to convert this to 0. This will set the selected value to the "default" ...
3
votes
2answers
3k views

Spring security - SecurityContext.authentication null in taglib and jsp but ok in controller

I've been struggling with this issue for a little while now. Found several posts about it but none solved my problem. It will probably have something to do with the fact that a SecurityContext is boud ...
3
votes
1answer
3k views

Converting A JSP Tag To A JSF Component

I've got an JSP tag that I would like to use in my JSF/Seam application. Could someone please give me some guidance in getting my environment to accept the tag. Can I just point a faclets ...
3
votes
4answers
2k views

JSP: EL expression is not evaluated

I have a JSP page running on Tomcat 5.5. I have the following code: <c:forEach var="i" begin="1" end="10" step="1"> <c:out value="${i}" /> <br /> </c:forEach> The ...
3
votes
2answers
2k views

How to add existing JSF components to my own custom components?

I have a tag class which extends UIComponent and UIOutput. In this class I have encodeBegin and encodeEnd which I can use my contextWriter to output any kinda html tag I want too by using ...
3
votes
2answers
2k views

Extracting Album art from MP3 files using TagLib - Is there a better way write this code?

I'm using Visual Basic 9 (VS2008) and TagLib. The following code extracts the album art from an MP3 file and displays it in a PictureBox. Is there a better way to write this code? Dim file As ...
3
votes
4answers
948 views

what's the fundamental difference between a jsp taglib vs including a jsp page?

i have several common elements (components), that will generate some html. it seems my options are creating a taglib, or just putting that logic into a jsp page and including the jsp. whats the ...
2
votes
1answer
18 views

What is taglib uri search sequence?

In which places and in which order the Tomcat is searching for taglib tag uri correspondence? When tld file and it's description in web.xml is required and when is not?
2
votes
0answers
72 views

How to create GSP taglib without Grails

We can use GSP without Grails, just mapping servlet groovy.servlet.TemplateServlet. And what about TagLibs? Here are docs about using TagLibs with Grails - we should just add class to ...
2
votes
0answers
37 views

iTunes integration & resizing

I am building an itunes add on. One of the specification is to make sure that the add in starts up as itunes starts and re-size itunes in a way that the two applications will be visible to the user. ...
2
votes
1answer
64 views

Releasing resources - artwork tag of TagLib file

In my C# application I'm creating tags for mp3 files. For this I use the TagLib library/extension. One of the tags is the artwork. I can successfully add the artwork to the mp3's tag by using: ...
2
votes
3answers
113 views

What the benefit of using taglib?

I am going to use Spring Web MVC Framework on Netbeans. Writing Web user interface do I really need to use taglib or can I aim the same functionality with XHTML? Is there any good reason for using ...
2
votes
1answer
134 views

unit-testing grails tag

I've written a Grails tag that is just a very thin wrapper around the Grails select tag package com.example class MyTagLib { def listTrees = {attrs -> List<TreeDto> allTrees = ...
2
votes
2answers
413 views

Grails - Set “disabled” attribute name and value in GSP

I´m trying to do this without success: <g:textField title="${title}" ${disabled} /> I want to apply a disabled attribute, ONLY if the ${disabled} variable is TRUE. I don't want to use ...
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
2answers
364 views

Using varargs in a Tag Library Descriptor

Is it possible to have a TLD map to the following function: public static <T> T[] toArray(T... stuff) { return stuff; } So that I can do: <c:forEach items="${my:toArray('a', 'b', ...
2
votes
1answer
223 views

how to call grails resources plugin's “use” tag as a method

I'm trying to invoke a tag defined by the resources plugin. The local name of this tag is "use" which is a Groovy keyword. I have tried calling it with : r.use( module:"jquery" ) ...
2
votes
1answer
427 views

Adding the Spring Security taglib creates errors when tomcat is initiating beans

I am working on a school project using Spring MVC (Spring 3.0.0). Now everything works as it should, until I add the Spring Security taglib to pom.xml using <dependency> ...
2
votes
1answer
119 views

MVC versus Taglibs, opinions/alternatives?

I'm a frontend developer and I find myself in the jsp view layer a lot and seen quite a few solutions to push data (model) into a view. Recently I've come across a taglib solution that pulls data into ...
2
votes
1answer
742 views

Spring MVC and custom tags

I want to use spring-beans in my custom taglibs in a spring-mvc application. Cause TagLib-Instances aren't instantiated by spring, I can't use dependnecy-injection. My next thought was to add the ...
2
votes
4answers
163 views

Unexpected Non-NULL return

I am playing with TagLib (on Windows, built with MingW). I am trying to get TagLib to recognize when there is no ID3v1 or ID3v2 information in an MP3 file. According to the TagLib documentation, the ...
2
votes
1answer
236 views

Inject dependency into a taglib class?

I'm using Spring 3 and want to inject some dependencies into a class that is part of a taglib. I can imagine some kludge using constructor-arg, but I'm hoping someone else has a better idea.
2
votes
1answer
836 views

Where can I find the source code for the TagLib# library?

Some time ago on the ID3 Implementations web page I found TagLib# to be quite useful library for handling tags in audio files. However when I recently tried to get the latest code from the ...
2
votes
1answer
70 views

Struts 1.x tags usage question

I have a jsp page with the tags: <logic:iterate id="var" ... .... <bean:write name="var" property="p1" ... etc. And I need, on each iteration, to generate a href composed from ...

1 2 3 4 5