tree: a8781d48b949b353f3220806885d2cf55c2856a0 [path history] [tgz]
  1. src/
  2. pom.xml
  3. README.md
platforms/commands/commands-spring-boot/README.md

Camel Shell Commands for Spring Boot

This component is implemented as a plugin for CRuSH Java Shell, a component used by the Spring Boot platform for the remote shell. It is essentially an adapter for the available Camel commands, responsible for passing through the options and arguments.

Installation

To enable Spring Boot remote shell support:


<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-remote-shell</artifactId> <version>x.x.x</version> <!-- use the version that is used as the depndency by the Camel --> </dependency>

To enable Camel Commands for the Spring Boot remote shell:


<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-commands-spring-boot</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency>