- This is a web based distributed zookeeper state machine sample showing how multiple Spring boot instances having a state machine can work with a zookeeper to distribute state handling thoughout a jvm boundaries. - Also this example is using websocket support to have live updates of a UI for state machine state changes.
23 lines
537 B
Plaintext
23 lines
537 B
Plaintext
= Spring State Machine Web Sample
|
|
This module is using bower to manage its javascript dependencies
|
|
but it is not yet integrated into a gradle build process. Thus all
|
|
javascript dependencies are already included in
|
|
`src/main/resources/static/lib`.
|
|
|
|
Usual process to create javascript deps is to run(for ubuntu):
|
|
|
|
[indent=0]
|
|
----
|
|
sudo apt-get install nodejs
|
|
sudo apt-get install npm
|
|
sudo sudo npm install bower
|
|
----
|
|
|
|
and then run from this directory:
|
|
[indent=0]
|
|
----
|
|
bower install
|
|
----
|
|
|
|
which is using `bower.json` to update dependencies.
|