{"id":21940161,"url":"https://github.com/softeq/spring-querydsl-project-template","last_synced_at":"2026-03-06T12:02:52.558Z","repository":{"id":96441389,"uuid":"216071758","full_name":"Softeq/spring-querydsl-project-template","owner":"Softeq","description":"Ready to use project template that integrates Java 8/11 with Spring Boot 2, JPA, QueryDsl and Postgres","archived":false,"fork":false,"pushed_at":"2019-11-25T13:17:14.000Z","size":100,"stargazers_count":5,"open_issues_count":0,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-04-22T15:33:06.965Z","etag":null,"topics":["gradle","java","jpa-hibernate","junit5","querydsl-jpa","spring-boot-2","spring-test","spring-web"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Softeq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-10-18T17:08:01.000Z","updated_at":"2021-12-29T13:09:50.000Z","dependencies_parsed_at":"2023-03-10T17:15:25.480Z","dependency_job_id":null,"html_url":"https://github.com/Softeq/spring-querydsl-project-template","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/Softeq/spring-querydsl-project-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Softeq%2Fspring-querydsl-project-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Softeq%2Fspring-querydsl-project-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Softeq%2Fspring-querydsl-project-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Softeq%2Fspring-querydsl-project-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Softeq","download_url":"https://codeload.github.com/Softeq/spring-querydsl-project-template/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Softeq%2Fspring-querydsl-project-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30175901,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T11:48:51.886Z","status":"ssl_error","status_checked_at":"2026-03-06T11:48:51.460Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["gradle","java","jpa-hibernate","junit5","querydsl-jpa","spring-boot-2","spring-test","spring-web"],"created_at":"2024-11-29T02:29:24.047Z","updated_at":"2026-03-06T12:02:52.520Z","avatar_url":"https://github.com/Softeq.png","language":"Java","readme":"## Spring QueryDsl Project Template\n\n[![Build Status](https://travis-ci.org/Softeq/spring-querydsl-project-template.svg?branch=master)](https://travis-ci.org/Softeq/spring-querydsl-project-template)\n[![Coverage Status](https://coveralls.io/repos/github/Softeq/spring-querydsl-project-template/badge.svg?branch=master)](https://coveralls.io/github/Softeq/spring-querydsl-project-template?branch=master)\n\nThere are Java project template that integrates next technologies:\n1. [Spring Boot 2](https://spring.io/projects/spring-boot)\n2. [Spring Data JPA](https://spring.io/projects/spring-data-jpa)\n3. [QueryDSL JPA](http://www.querydsl.com/)\n4. [Liquibase](https://www.liquibase.org/)\n5. Postgres\n6. [MapStruct](https://mapstruct.org/)\n7. [Lombok](https://projectlombok.org/)\n8. [JUnit 5](https://junit.org/junit5/docs/current/user-guide/) + Integration Tests\n\n## Build \nTo build the project it is require to use next command\n\n```bash\ngradlew clean build\n```\n\nTo build docker image it will require to use\n\n```bash\ndocker build . -t app-template\n```\n\n## Run\n\nTo run the project it is require to use docker-compose\n\n```bash\ndocker-compose -f ./docker/docker-compose.yaml up\n```\n\nTo run only project dependencies it is require to evaluate \n\n```bash\ndocker-compose -f ./docker/docker-compose-deps.yaml up\n```\n\n## Architecture\n\nApplication provide next folder structure \n```\nsrc\n    /itest\n    /main\n    /test\n```\n\nApplication provides next folders:\n - *itest* - this folder contains integration tests\n - *main* - this folder contains application code\n - *test* - this folder contains JUnit 5 tests\n\nMain application contains folder structure that represent \n([hexagonal architecture](https://en.wikipedia.org/wiki/Hexagonal_architecture_(software)))\n\n```\ncom.softeq.app\n    .domain\n    .services\n    .config\n    .adapters\n        .api\n        .jpa\n```\n\nThere are list of packages:\n  - *domain* - this folder contains domain model of the application and repository interfaces\n  - *services* - this folder contains services of the application\n  - *config* - current folder contains application configurations\n  - *adapters* - current folder contains external services adapters\n  \nProject contains several base classes:\n1. *AbstractITest* - base integration test that configure context and rollback options for the tests\n2. *AbstractRepositoryImpl* - base class for queryDsl based repositories\n\nGradle build support next options:\n1. `-PdisableIntegrationTests` - this option allow to disable integration tests\n2. `-PdisableJacoco` - this options allow to disable code coverage checks\n\n**To build the code successfully it is required \u003e 80% code coverage!** \nThis requirement automatically checked during build by JaCoCo plugin.\n\n## License\nMIT\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsofteq%2Fspring-querydsl-project-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsofteq%2Fspring-querydsl-project-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsofteq%2Fspring-querydsl-project-template/lists"}