Skip to content
Martynas Jusevičius edited this page Apr 27, 2015 · 6 revisions

Running standalone Processor

To run Graphity Processor:

  • checkout the source code from this Git repository
  • build as a Maven Web application (as specified by the default standalone Maven profile)
  • run the webapp in an IDE or deploy the .war on a servlet container such as Tomcat
  • open the webapp in a browser (on an address such as http://localhost:8080/; depends on host, Tomcat port and application context path)

Using Processor in your Maven Web application

To add Graphity Processor dependency:

  • add GP as a Maven dependency in your project using an IDE, or in the pom.xml file:

      <dependencies>
          <dependency>
              <groupId>org.graphity</groupId>
              <artifactId>processor</artifactId>
              <version>1.1.2</version>
          </dependency>
      </dependencies>
    
  • add main/webapp/WEB-INF/web.xml with Configuration

See also Graphity Client installation.

Clone this wiki locally