JSP functions - How to declare long as parameter in TLD
- by Spines
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.