https://github.com/alainpham/validator-example
https://github.com/alainpham/validator-example
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/alainpham/validator-example
- Owner: alainpham
- Created: 2019-11-21T17:44:23.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-21T17:47:40.000Z (about 6 years ago)
- Last Synced: 2025-01-27T07:42:20.945Z (12 months ago)
- Language: Java
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
Awesome Lists containing this project
README
# Spring Boot with camel and other useful things test
## To build this project use
```
mvn install
```
## To run this project with Maven use
```
mvn spring-boot:run
```
## For testing
```
curl http://localhost:8090/camel/api-docs
curl http://localhost:8090/camel/ping
```
## Acces Swagger UI with definition
```
http://localhost:8090/webjars/swagger-ui/3.23.5/index.html?url=/camel/api-docs
```
## Call the ping rest operation
```
curl http://localhost:8090/camel/restsvc/ping
```
## Run local container with specific network and IP address
```
docker build -t test .
docker run -d --net primenet --ip 172.18.0.10 --name test test
```