Skip to content

solutionman/SpringBootDocker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#SpringBootDocker

front: http://localhost:8081/

to build back:

mvn -U clean install -DskipTests

to build front:

cd frontend
npm install
export NODE_OPTIONS=--openssl-legacy-provider
npm run build -openssl-legacy-provider

to run:

sudo docker-compose up
sudo docker-compose up -d --build

to stop:

sudo docker-compose down

app: http://localhost:8080/

api: http://localhost:8080/api/v1/heroes/1

users api: http://localhost:8080/api/users

user: User
password: 12345678
user: Admin
password: 87654321

Authorize with username and password
Postman: POST http://localhost:8080/api/login Body: x-www-form-urlencoded username SuperUser password 12345678

Login with token
Postman: GET http://localhost:8080/api/users Headers: Key Authorization Value Bearer + (value from access_token)

Refresh token:
GET http://localhost:8080/api/token/refresh Headers: Key Authorization Value Bearer + (value from refresh_token) here you get a new pair of access_token and refresh_token so you can take new access_token and login with it

to clean:

sudo docker ps -a

sudo docker rm <CONTAINER ID of springbootdocker_app>

sudo docker rm  <CONTAINER ID of postgres>

sudo docker images

sudo docker image rm <IMAGE ID of  springbootdocker_app>

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published