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
- Host: GitHub
- URL: https://github.com/eis/spring-boot-security-example
- Owner: eis
- Created: 2017-09-18T11:54:08.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-08-01T21:24:30.000Z (almost 2 years ago)
- Last Synced: 2025-06-02T12:02:38.696Z (about 1 year ago)
- Topics: java11, java8, spring-boot
- Language: Java
- Homepage:
- Size: 36.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
```