- It is a practice project for studying Spring Boot and Oracle DB.
- Java Spring Oracle
- Execute Oracle DB and Minio S3 with docker
docker-compose up./gradlew bootRunDefault port: http://localhost:8090
- POST
/api/auth/login - Request Body:
{
"username": "admin",
"password": "admin1234"
}Or the userid/passwd combination from the SM01 table in the DB (in production)
- Response:
{
"accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
}Add the JWT to the HTTP header for all protected API calls, as follows:
Authorization: Bearer {accessToken}- Swagger UI:
http://localhost:8090/swagger-ui/index.html - OpenAPI:
http://localhost:8090/v3/api-docs