An open API service indexing awesome lists of open source software.

https://github.com/eis/spring-boot-security-example


https://github.com/eis/spring-boot-security-example

java11 java8 spring-boot

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

          

Simple Spring Boot security example
===================================


Answers to [http://localhost:8080/login](http://localhost:8080/login).

Login is admin/123456 or user/password.

Docker stuff
------------

```bash
# build container from Dockerfile
docker build -t spring-boot-security-example .

# run container
docker run -ti -p 0.0.0.0:8080:8080 --rm spring-boot-security-example

# call your container
curl `docker-machine ip default`:8080

# stop your container
docker stop CONTAINERNAME

# debug something
docker ps
```