JSP functions - How to declare long as parameter in TLD
Posted
by Spines
on Stack Overflow
See other posts from Stack Overflow
or by Spines
Published on 2010-05-14T16:30:22Z
Indexed on
2010/05/14
16:34 UTC
Read the original article
Hit count: 226
I'm getting an error WARNING: Method "pl" for function "pl" not found
, I think its because I'm not declaring the parameters right.
<function-signature>java.lang.String pl(java.lang.Long, java.lang.String)</function-signature>
is what I have in the TLD. and
public static String pl(long num, String str)
is what I have in the .java file.
© Stack Overflow or respective owner