Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Introduction

...

  1. Using REST APIs.
  2. Java Spring
  3. Angular JS

...

  1. Install prerequisite software which can be downloaded from http://demo.openspecimen.org/releases/

Prerequisites

...

...

View file
nameos-plugin.zip
height250

...

Prerequisites

Following table lists prerequisites and their supported versions.

...

Keyword

Comment

PLUGIN_HOME

Directory where plugin source code is kept. For example, F:\os-plugin.

JAVA_HOME

Directory where JDK is installed. For example, C:\JDK1.8

Following are high level steps:

  1. Install prerequisite software which can be downloaded from http://demo.openspecimen.org/releases/Prerequisites/
  2. Download the plugin skeleton os-plugin.zip  
    View file
    nameos-plugin.zip
    height250
  3. Unzip the downloaded file into a directory.

Plugin directory structure

  1. src/main/java: All the custom java classes should got under this directory
  2. src/main/resources 
    2.1. errors/messages.properties: All the messages and labels should go in this file
    2.2. pluginContext.xml: All the bean definition should go in this file.
  3. build.gradle: This file contains the complete build script for compiling and building the plugin

Steps to add custom Java classes

...

  1. Please add all your Java classes under PLUGIN_HOME/src/main/java/com/krishagni/openspecimen
  2. All the Spring configuration should be done in PLUGIN_HOME/src/main/resources/pluginContext.xml

...