I'm using grails and want to use an in-house custom JSP taglib in the project. Does anyone know how to do this? I've seen references to getting other jsp taglibs working but not if you've written them yourself. I have a jar file called 'common-view.jar' in the lib folder and have tried this code to reference it:
<%@ taglib uri="${createLinkTo(dir:'lib',file:'common-view.jar')}" prefix="cas_common" %>
And then in the code I use:
<cas_common:body>${career.jobSections.sectionWorkActivities}</cas_common:body>
I get:
org.codehaus.groovy.grails.web.pages.exceptions.GroovyPagesException: Could not parse script
Any help greatly appreciated.
Matt