Class ProcessContainer

java.lang.Object
org.pipservices3.container.Container
org.pipservices3.container.ProcessContainer
All Implemented Interfaces:
org.pipservices3.commons.config.IConfigurable, org.pipservices3.commons.refer.IReferenceable, org.pipservices3.commons.refer.IUnreferenceable, org.pipservices3.commons.run.IClosable, org.pipservices3.commons.run.IOpenable

public class ProcessContainer extends Container
Inversion of control (IoC) container that runs as a system process. It processes command line arguments and handles unhandled exceptions and Ctrl-C signal to gracefully shutdown the container.

### Command line arguments ###

  • --config / -c path to JSON or YAML file with container configuration (default: "./config/config.yml")
  • --param / --params / -p value(s) to parameterize the container configuration
  • --help / -h prints the container usage help

### Example ###

 
 ProcessContainer container = new ProcessContainer();
 container.addFactory(new MyComponentFactory());

 container.run(process.getArgs());
 
 
See Also:
  • Field Details

    • _configPath

      protected String _configPath
  • Constructor Details

    • ProcessContainer

      public ProcessContainer(String name, String description)
      Creates a new instance of the container.
      Parameters:
      name - (optional) a container name (accessible via ContextInfo)
      description - (optional) a container description (accessible via ContextInfo)
  • Method Details

    • run

      public void run(String[] args) throws Exception
      Runs the container by instantiating and running components inside the container.

      It reads the container configuration, creates, configures, references and opens components. On process exit it closes, unreferences and destroys components to gracefully shutdown.

      Parameters:
      args - command line arguments
      Throws:
      Exception - when error occured.