1. Declare function in taglib that has an inner class in the signature stackoverflow.comLet's say I want to declare a function that has this java signature:
and that ArticleAndStatus is an inner class of org.example.Outer .
How would ... |
2. taglib declaration coderanch.comIn my experience of using 3rd party codes, they normally require(based on their docs) that to implement it, you must declare the .tld file via their website. Example: <%@ taglib uri="http://companyname.net" prefix="displaytag" %> But in my eclipse environment, i have to download the tld file and store it to my /WEB-INF folder and declare it from there in my jsp. Is ... |