Installing the Prototype JSP Taglib

To install the Prototype JSP Tag library you can either download a JAR file for your current web application or, if you are using Maven, you can simply add a dependency to your project's Maven POM

Download and Install Prototype Library in a Web Application

  • Download version 1.1 of the Prototype JSP tag library.
  • Add prototype-taglib-1.1.jar to your web application's WEB-INF/lib directory.
  • Reference this tag library with the following URI: http://web.discursive.com/tags-prototype

Adding the Prototype Tag Library as a Dependency

  • Add a dependency on com.discursive.taglib.prototype:prototype-taglib:1.1 by adding the following dependency XML section to the dependencies in your project's pom.xml:
    <dependency>
      <groupId>com.discursive.taglib.prototype</groupId>
      <artifactId>prototype-taglib</artifactId>
      <version>1.1</version>
    </dependency>
  • If your project's packaging is configured to generate a WAR file. Your WAR should contain the prototype-taglib-1.1.jar in WEB-INF/lib
  • Reference this tag library with the following URI: http://web.discursive.com/tags-prototype