According to TLD or attribute directive in tag file, attribute value does not accept any expressions.After digging into the issue and searching through web, finally I got a workaround to solve this issue. The taglib directive we use to include JSTL core in our JSP needs to be modified. The taglib in my JSP was:
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
Code language: HTML, XML (xml)
I changed above to: <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
Code language: HTML, XML (xml)
And it worked for me!!! I dig into standard.jar for any clue and also checked few .tld files in this jar but couldn’t find an explanation for this. Any idea why this is so? Java URL Encoder/Decoder Example - In this tutorial we will see how to URL encode/decode…
Show Multiple Examples in OpenAPI - OpenAPI (aka Swagger) Specifications has become a defecto standard…
Local WordPress using Docker - Running a local WordPress development environment is crucial for testing…
1. JWT Token Overview JSON Web Token (JWT) is an open standard defines a compact…
GraphQL Subscription provides a great way of building real-time API. In this tutorial we will…
1. Overview Spring Boot Webflux DynamoDB Integration tests - In this tutorial we will see…
View Comments
Good article,
I am using struts2-jquery-plugin-1.8.0 with acegi-security-1.0.7
Thank you so much
good bye
@Amelio: Thanks for the comment
Thanks a lot for the advice. It really worked and it has taken so long for me to get to know this. Thanks again
Thanxxxxxxxxxxx..a lot..it really worked
great It worked ...thanks If u could also specify what was the issue earlier ....?
Yes , this worked for me , thanks for the post.
thank you,its worked for me.so many blogs and many peoples written unnecesary things.but this one worked for me thank you
Thanks a lot, solved my problem
Thank you for the post this really helped cause I was getting a terrible headache
This is due to missing of under . This is used to specify the tag accepts EL expression to resolve value. By default its false. so if you want use dynamic EL
expression for your attribute then you need to define tag value as 'true'.
Eg:--
input
true
true
great It worked …thanks a lot
Thanks to vikram patel & Tharakaram
this worked for me , thanks for the post.