mirror of
https://github.com/Lemonochrme/service-architecture.git
synced 2025-06-08 21:50:50 +02:00
24 lines
467 B
Markdown
24 lines
467 B
Markdown
# Mini-Projet Architecture de Services
|
|
|
|
## Objectif :
|
|
|
|
Créer une application axée microservices en utilisant SOAP et REST
|
|
|
|
## Installation
|
|
|
|
```
|
|
mvn compile
|
|
```
|
|
|
|
Une fois le projet compilé, lancer les différents services SOAP et REST via `Spring Boot` :
|
|
|
|
```
|
|
mvn spring-boot:run -pl rest-service
|
|
```
|
|
|
|
|
|
```
|
|
mvn spring-boot:run -pl soap-service
|
|
```
|
|
|
|
Vérifier le bon fonctionnement en accédant à `localhost:8080/hello` pour REST et `localhost:8081/ws` pour SOAP.
|