https://github.com/awakelife93/spring-boot-boilerplate
spring boot (java) boilerplate
https://github.com/awakelife93/spring-boot-boilerplate
boilerplate gradle java jpa jwt postgresql querydsl redis spring-batch spring-boot spring-security
Last synced: about 2 months ago
JSON representation
spring boot (java) boilerplate
- Host: GitHub
- URL: https://github.com/awakelife93/spring-boot-boilerplate
- Owner: awakelife93
- License: mit
- Created: 2023-10-30T04:04:34.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-22T09:57:51.000Z (over 1 year ago)
- Last Synced: 2024-04-22T13:04:27.578Z (over 1 year ago)
- Topics: boilerplate, gradle, java, jpa, jwt, postgresql, querydsl, redis, spring-batch, spring-boot, spring-security
- Language: Java
- Homepage:
- Size: 152 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
### Spring Boot Boilerplate
### Environment & Skills
- Application
- Java / JDK 17
- Spring boot 3.3.0
- Gradle 8.2.1
- Spring Security 6.1.4
- Spring Batch 5.0.3
- Springdoc OpenAPI
- Postgresql
- h2 database (PostgreSQL mode) - localhost environment
- Jpa
- QueryDSL
- Redis
- Lombok
- Jwt
- Validation
- Sentry
- LogBack
- Flyway- Test
- Spring Boot Starter Test
- Spring Security
- Spring Batch
- Junit 5
- Mockito
- Instancio
- h2 database (PostgreSQL mode)
- Flyway- Tools
- Pgadmin### Project Guide
- common
- domain (post, user, auth)
- security
- spring security + jwt logic
- utils
- resources
- prod, dev, local, common, test, secret-{environment}
- common: Write common variables for the project.
- test: Create the variables needed for your test environment.
- secret-{environment}: auth (jwt, api key), database information### Description
- cors
- This project used **spring security** rather than WebMvcConfigurer for the cors environment.
- docker-compose
- If you plan to use it, you need to check the environment variables.
- create spring batch metadata table (localhost, development and production environments.)
- Run your ddl script or Please refer to [github - spring batch ](https://github.com/spring-projects/spring-batch/blob/5.0.x/spring-batch-core/src/main/resources/org/springframework/batch/core/schema-postgresql.sql)
- Since this project uses postgresql, the spring.batch.jdbc.initialize-schema: always option does not work.
- localhost & test environment, generating [batch-postgresql-metadata-schema.sql](src/main/resources/db/sql/batch-postgresql-metadata-schema.sql).
- [application-test.yml](src/main/resources/application-test.yml)### Author
Hyunwoo Park