The application consists of several Microservices and a Web-Application managing a conference :
Microservice Name | Powered By | Description | Technologies |
---|---|---|---|
Schedule of the conference |
JAX-RS, CDI |
||
Sessions of the conference |
JAX-RS, CDI, JSON-P |
||
Speakers of the conference |
JAX-RS, CDI, JSON |
||
Votes for each session |
JAX-RS, CDI, JSON-P, MP Config, MP Fault Tolerance, MP Metrics, MP Health |
||
Frontend UI |
Angular2, Bootstrap4 |
The WebApp is a direct subscriber to the individual Microservices. This means that there is no aggregator / middle-man application. The WebApp itself provides a known relative EndPoint microservice that enables the lookup of URLs to the other services.
This will run each service in the runtime container that its setup for and the UI in a Node.js server to interact with them.
Build, package and run all microservices and the UI:
mvn clean package -P start,ui
Run just the microservices:
mvn package -Pstart -pl :microservice-start
Run just the UI:
mvn package -Pui -pl :microservice-start
mvn clean install -DskipTests
-
Build the projects using Maven (
mvn clean install
) or (mvn -fn clean install
) to skip over failed tests. -
To get the technical documentation, just
mvn clean generate-resources
under thedocs
directory. You will find a PDF and HTML version of the documentation underdocs/target/generated-docs
Each service can run on any container (this is the Microprofile guarantee), but the service projects have been written by vendors to use their container. See the README.adoc of each microservice for details on how to run each microservice individually.
If you would like to participate in the community effort to advance EE then by all means feel free to join us on the following sites:
-
Microprofile.io - The community landing site.
-
Google+ Microprofile groups - Public discussion lists (We do not have private lists).
-
Kanban board - A nice Kanban integration for our GitHub issues.
-
All source code - Apache Licence V2 project OSS code.
The web-application project uses the com.github.eirslett:frontend-maven-plugin to download and install all node and npm requirements. Sometimes this may fail if console permissions are not permissive enough.
In such cases you will have to manually install some reqiurements:
-
Download and install node: https://nodejs.org/en/download/current/
-
Install npm manually:
cd web-application/src/main/static npm install npm npm install typings --global typings install --global