Private simple playground application.
$./mvnw clean verify [-Pprofile]
available profiles:
db.h2
activated by defaultdb.postgres
requires postgres database (see application-db.postgres.properties)ssl
enable SSL, the application will be available on https://localhost:8443/docker
build docker image
- with maven
$ ./mvnw -f hello-app/pom.xml spring-boot:run [-Pprofile]
- with java
$ java -jar hello-app/target/hello-app-0.0.1-SNAPSHOT.jar
- with docker (image is built with docker profile)
$ docker run -d -p 8090:8090 -t hello-app
- use postgres docker image for testing
$ docker run --name hello-db -p 5432:5432 -e POSTGRES_PASSWORD=123456 -d postgres
-
use jenkins for testing CI pipeline alias Jenkinsfile
- run jenkins docker image with pre installed blue ocean plugin
$ docker run -p 8091:8080 jenkinsci/blueocean
- open browser http://dockerip:8099/blue/ (admin password is printed in console)
- run jenkins docker image with pre installed blue ocean plugin
-
use sonarcloud.io
$ ./mvnw clean \ verify \ sonar:sonar \ -Dsonar.organization=thradec-github \ -Dsonar.host.url=https://sonarcloud.io \ -Dsonar.login=[SECRET_TOKEN]
curl localhost:8090/actuator/health
curl localhost:8090/api/hello
curl localhost:8090/api/hello/random
curl -X POST -H "Content-Type: application/json" -d '{"message":"unauthorized"}' localhost:8090/api/hello
curl -X POST -H "Content-Type: application/json" -d '{"message":"hello"}' localhost:8090/api/hello -u admin:admin
http://localhost:8090/v2/api-docs
http://localhost:8090/swagger-ui.html