Web utilities

    Current release:  1.0
    Snapshot release: 1.1-SNAPSHOT

The following is a list of the provided web utilities with a short description:

NameDescription
Non Available FilterAllows to easily disable a web application redirecting incoming requests to a mainteinance page
Tab tagsEasy to use tags to create tabs in your web application

Importing in your project

To import the FreeHEP Web Utilities in your application add the following dependencies to your project

Maven 1

The repository is http://java.freehep.org/maven

  <dependencies>
    <dependency>
      <groupId>org.freehep</groupId>
      <artifactId>freehep-webutil</artifactId>
      <version>1.1-SNAPSHOT</version>
      <properties>
         <war.bundle>true</war.bundle>
      </properties>
    </dependency>        
    <dependency>
      <groupId>jspapi</groupId>
      <artifactId>jsp-api</artifactId>
      <version>2.0</version>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.4</version>
    </dependency>
    <dependency>
      <groupId>commons-codec</groupId>
      <artifactId>commons-codec</artifactId>
      <version>1.3</version>
      <properties>
         <war.bundle>true</war.bundle>
      </properties>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>jstl</artifactId>
      <version>1.1.2</version>
      <properties>
         <war.bundle>true</war.bundle>
      </properties>
    </dependency>
    <dependency>
      <groupId>taglibs</groupId>
      <artifactId>standard</artifactId>
      <version>1.1.2</version>
      <properties>
         <war.bundle>true</war.bundle>
      </properties>
    </dependency>
  </dependencies>

Maven 2

  <dependencies>
    <dependency>
      <groupId>org.freehep</groupId>
      <artifactId>freehep-webutil</artifactId>
      <version>1.1-SNAPSHOT</version>
    </dependency>        
  </dependencies>