Science Score: 54.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
βCITATION.cff file
Found CITATION.cff file -
βcodemeta.json file
Found codemeta.json file -
β.zenodo.json file
Found .zenodo.json file -
βDOI references
-
βAcademic publication links
Links to: zenodo.org -
βAcademic email domains
-
βInstitutional organization owner
-
βJOSS paper metadata
-
βScientific vocabulary similarity
Low similarity (4.9%) to scientific vocabulary
Keywords
Repository
π Java4You Design patterns
Basic Info
- Host: GitHub
- Owner: AlexRogalskiy
- License: gpl-3.0
- Language: HTML
- Default Branch: master
- Homepage: https://alexander-rogalsky.gitbook.io/java-patterns/
- Size: 35.1 MB
Statistics
- Stars: 12
- Watchers: 2
- Forks: 5
- Open Issues: 228
- Releases: 10
Topics
Metadata Files
README.md
Java Design Patterns
πΉ Table of contents
- Java Design Patterns
β Summary
Java Design Patterns is intended to provide various use case scenarios and architectural concepts on prototyping adaptive applications.
text
mkdocs.yml # Configuration file.
docs/
readme.md # General information
summary.md # Table of contents
units/
design-patterns.md # Design patterns and architectural concepts
scenarios.md # Scenarios in practice
use-cases.md # Typical use cases
user-guide/
changelog.md # Changelog page
code_of_conduct.md # Code of conduct page
code_owners.md # Code owners page
dependency.md # Dependency page
description.md # Description page
faq.md # FAQ page
getting-started.md # Getting started page
troubleshooting.md # Troubleshooting page
upgrade.md # Upgrade page
reporting/
info.md # Informational page
issue_template.md # Issue template page
bug_report.md # Bug report template
custom_report.md # Custom report template
feature_request_template.md # Feature request template
pull_request_template.md # Pull request template
contributing/
info.md # Contributing page
links/
info.md # Links page
π Documentation
The Website documentation is provided by gitbook and can be discovered at url:
To enable documentation serving at localhost you can run the following script
shell script
./scripts/build-docs.sh
otherwise, the next steps should be considered:
1) Install/upgrade pip command-line utility:
shell script
pip install --upgrade pip
or if you need to install pip for the first time:
shell script
wget --no-check-certificate https://bootstrap.pypa.io/get-pip.py
python get-pip.py
2) Install the mkdocs package using pip:
shell script
pip install mkdocs
or more conveniently for Windows subsystem:
shell script
python -m pip install mkdocs --quiet
or via provided software package manager tool:
shell script
brew install mkdocs # macOS
sudo apt install mkdocs # Ubuntu
sudo yum install mkdocs # CentOS/RHEL
3) Install the material theme for the website:
shell script
python -m pip install mkdocs-material --quiet
python -m pip install markdown-include --quiet
...
(see requirements.txt)
...
4) Start a web server on your local machine at localhost, where you can see the entire website β with hot-reload when you save a change by running the following command:
shell script
python -m mkdocs build --clean --config-file mkdocs.yml
python -m mkdocs serve --verbose --dirtyreload
The site is served from the address specified in configuration file mkdocs.yml. The MkDocs default is localhost:8000, but the current configuration file sets it:
yaml
dev_addr: '0.0.0.0:8000'
The --dirtyreload option limits rebuilds to the changed page, which means changes to mkdocs.yml are not reflected.
If you change mkdocs.yml, stop and restart python -m mkdocs serve --verbose --dirtyreload.
5) Deploy to GitHub pages:
shell script
python -m mkdocs --verbose gh-deploy --force --remote-branch gh-pages
5) Open up localhost in browser to get the default documentation homepage.
π§Ά Kubernetes
Running k8s cluster with tilt command by acquiring k8s deployment configuration:
shell
tilt up
Shutting down k8s cluster with provisioned resources removal:
shell
tilt down --delete-namespaces
β° Statistics
π Versioning
The project uses SemVer for versioning. For the versions available, see the tags on this repository.
πΉ Authors
Java Patterns is maintained by the following GitHub team-members:
with community support please contact with us if you have some question or proposition.
π Contributing
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us (emoji key).
More on information on project contributions can be found at CHANGELOG.md.
This project follows the all-contributors specification. Contributions of any kind are welcome!
See also the list of contributors who participated in this project.
Java Design Patterns has experimental support for Gitpod, a pre-configured development environment that runs in your browser. To use Gitpod, click the button below and sign in with GitHub. Gitpod also offers a browser add-on, though it is not required.
π¨ Visitor stats
β½ Licensing
Java Patterns is distributed under LGPL version 3 or later, [License]. LGPLv3 is additional permissions on top of GPLv3.

π Development Support
Like
and Java Patterns ? Consider buying me a coffee :)
π¨βπ¨βπ§βπ¦ Acknowledgement
π OpenGraph Card
π₯ Feeds and Podcasts
Reddit posts
- Spring4Shell Details and Exploit code leaked
- Apple's Code-signing Quagmire
- Spring4Shell: 0-day RCE on Spring Core
- Game Making Libraries + Engines in Java 2022
- Where's Java Going In 2022?
- Architecture design help
- Maven is turning 20 today π₯³ To many more years of stable Java builds π»
- Memory leak due to improper exception handling
- Scaling Spring Batch processing with partitioning using Kafka
- New in JDK 18: Reviewing Enhancements in the Latest JDK Release
InfoWorld posts
- JDK 18: The new features in Java 18
- JDK 19: Java 19 begins to take shape
- Project Loom: Understand the new Java concurrency model
- Java 19 could be big
- Java 8 still dominates, but Java 17 wave is coming β survey
- Rust programming for Java developers
- TypeScript usage growing by leaps and bounds β report
- A brief intro to the Pants build system
- Java proposal would lower GC latency
- How to handle Java errors and cleanup without finalize
Let's talk posts
- Link Dump #29
- Link Dump #28
- Link Dump #27
- Link Dump #26
- Link Dump #25
- Link Dump #24
- Link Dump #23
- Link Dump #22
- Link Dump #21
- Link Dump #20
Random thoughts posts
- Join in SQL
- For-loops and Streams
- Being Glue
- Hibernate Proxies and the Visitor Pattern
- RAID Mirrorring with ADM
- Are we really engineers?
- Standard RAID levels
- Assing JsonIgnore on generated files in openapi
- RESTEASY004590: You must define a @Consumes type on your client method or interface, or supply a default
- Replacing many if statements
Better code posts
- How To Use CORS in NestJS Application
- Handling Large Datasets in Distributed Systems
- Example of Spring Cloud Function with AWS Lambda
- How to Use Pub/Sub with NodeJS
- Logging in Spring Boot Microservices
- Implementing Domain-Driven Design
- A Step By Step Guide to Kubernetes
- Spring Cloud Tutorial for Beginners
- Details of Liskov Substitution Principle Example
- Building Microservices with Event-Driven Architecture
Inside Java posts
- ZGC - The Future of Low-Latency Garbage Collection Is Here
- New in JDK 18: Reviewing Enhancements in the Latest JDK Release
- Moving Java Forward Keynote
- Java Is Fast! - Inside Java Newscast #22
- Programmerβs Guide to Snippets
-
jextractStandalone Repository - Episode 23 βJava 18 is Here!β
- The Arrival of Java 18!
- JavaOne is back!
- JDK 18 Security Enhancements
Java programmer posts
- 6 Best Online Java Courses for Beginners in 2022
- Solve Error Java Access Denied FileNotFoundException
- Custom Iterator in Java with Example
- Rounding in Java β Math.Round, Math.Floor, Math.Ceil
- Advantages of Hibernate Over JDBC?
- Advantages of R Programming Language
- Method Overloading in Java With Example
- 10 Best Laptop for Java Programming in India 2022
- Types of Constants in Java
- Java Collection Hierarchy
Dreamix posts
- Learn from Java Champion Markus Eisele: Developer productivity with containers and the future of cloud-native
- Learn from Java Champion Johan Vos: JavaFx in the Age of Browsers
- Five Reasons to Choose Java for your Next Software Project
- Learn from Java Champion Gunnar Morling: Performance unit testing with Java Flight Recorder (JFR) and JfrUnit
- Unit Testing in Java β The Missing Bits (Part 2)
- Unit Testing in Java β The Missing Bits (Part 1)
- Sorting An Array In Java: Tips & Tricks
- Java vs JavaScript: How to Choose the Right Backend Technology?
- Splitting String in Java β Examples and Tips
- Learn from Java Champion Gerrit Grunwald: JavaFx β not dead yet
Plumbr posts
- Plumbr has been acquired by Splunk
- Using Plumbr with OpenTelemetry NodeJS agent
- Extending Plumbr RUM with Web Vitals metrics
- Send alerts from Plumbr to Microsoft Teams
- Universal agent expands bottleneck coverage with slow http requests
- Achieve the three pillars of observability β link Plumbr distributed traces with logs
- Transaction snapshots become request processing
- Plumbr now monitors Python applications and APIs
- Distributed tracing in practice
- Plumbr now supports application versioning
Thorben Janssen posts
- MutationQuery and SelectionQuery in Hibernate 6
- Native Queries β How to call native SQL queries with JPA & Hibernate
- Hibernate 6 EmbeddableInstantiator β Instantiate embeddables your way
- Logging Guide for Hibernate 4, 5 & 6 β Use the right config for dev and prod
- Dynamic Inserts and Updates with Spring Data JPA
- FlushMode in JPA and Hibernate β What it is and how to change it
- Hibernate Performance Tuning Tips β 2022 Edition
- The Best Spring Data JPA Logging Configuration in Spring Boot
- Naming Strategies in Hibernate 5
- The Best Mapping for Shared Technical Attributes With Hibernate
Redhat posts
- Using Kubernetes ConfigMaps to define your Quarkus applicationβs properties
- CodeReady Workspaces devfile, demystified
- Decoupling microservices with Apache Camel and Debezium
- How Quarkus brings imperative and reactive programming together
- Open Liberty Java runtime now available to Red Hat Runtimes subscribers
- New features in Red Hat CodeReady Studio 12.13.0.GA and JBoss Tools 4.13.0.Final for Eclipse 2019-09
- Quarkus: Modernize βhelloworldβ JBoss EAP quickstart, Part 1
- Managing JBoss EAP/Wildfly using Jcliff
- Bring joy to development with Quarkus, the cloud-native Java framework
- Whatβs new in Red Hat Dependency Analytics
JavaCodeGeeks posts
- Json Patch and Json Merge Patch in Java
- Making the Case for Digital Renovation
- Retention period and issue with Kafka data not getting deleted
- Kafka Record Patterns for Data Replication
- [MEGA DEAL] The 2021 Java Bootcamp Bundle(96% off)
- Supporting bulk operations in REST APIs
- Handling Actions Class in Selenium and its usage
- Store health and safety β Example health and safety architecture
- Developers Are Obsessed With Their Text Editors
- Understanding Istio Telemetry v2
DevCases posts
- Spring JavaMelody Tutorial
- Spring Boot JavaMelody Tutorial
- How to find file in directory
- How to list all files in the directory
- How to convert Iterable to Collection
- Spring Boot CRUD Tutorial with embedded H2 and Freemarker
- Spring Boot CRUD Tutorial with embedded H2 and JSP
- Spring Boot Hello World β Freemarker tutorial
- Spring Boot Hello World β JSP tutorial
- How to debug maven tests
Owner
- Name: Alexander
- Login: AlexRogalskiy
- Kind: user
- Location: Saint-Petersburg
- Company: WildBees.Labs
- Website: linkedin.com/in/alexander-rogalsky-985a4828
- Repositories: 10,392
- Profile: https://github.com/AlexRogalskiy
Active Researcher
Citation (CITATION.cff)
cff-version: 1.1.0
message: "If you use this software, please cite it as below."
authors:
- family-names: Alexander
given-names: Rogalsky
orcid: https://zenodo.org/badge/latestdoi/329967283
title: AlexRogalskiy/java-patterns: 1.6
version: 1.6
date-released: 2017-12-18
GitHub Events
Total
- Watch event: 1
- Delete event: 9
- Issue comment event: 124
- Push event: 219
- Pull request review event: 114
- Pull request event: 59
- Fork event: 2
- Create event: 48
Last Year
- Watch event: 1
- Delete event: 9
- Issue comment event: 124
- Push event: 219
- Pull request review event: 114
- Pull request event: 59
- Fork event: 2
- Create event: 48
Issues and Pull Requests
Last synced: 4 months ago
All Time
- Total issues: 0
- Total pull requests: 60
- Average time to close issues: N/A
- Average time to close pull requests: 4 months
- Total issue authors: 0
- Total pull request authors: 3
- Average comments per issue: 0
- Average comments per pull request: 0.83
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 58
Past Year
- Issues: 0
- Pull requests: 39
- Average time to close issues: N/A
- Average time to close pull requests: 5 days
- Issue authors: 0
- Pull request authors: 3
- Average comments per issue: 0
- Average comments per pull request: 0.41
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 37
Top Authors
Issue Authors
- mend-bolt-for-github[bot] (3)
Pull Request Authors
- github-actions[bot] (78)
- dependabot[bot] (23)
- mojafa (2)
- renovate[bot] (1)
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- Dockerfile * docker
- actions/checkout v2 composite
- ful1e5/TheActionDev v2 composite
- ericcornelissen/labeler label-based-on-status composite
- hmarr/auto-approve-action v2.1.0 composite
- pozil/auto-assign-issue v1.4.0 composite
- actions/checkout v2 composite
- butlerlogic/action-autotag stable composite
- actions/github-script v6 composite
- fountainhead/action-wait-for-check v1.0.0 composite
- pascalgn/automerge-action v0.15.2 composite
- tibdex/backport v1 composite
- actions/checkout v2 composite
- gautamkrishnar/blog-post-workflow master composite
- actions/checkout v2 composite
- actions/setup-node v2.1.4 composite
- actions/checkout v2 composite
- actions/setup-node v1 composite
- pnpm/action-setup v1.2.1 composite
- actions/cache v2.1.4 composite
- actions/checkout master composite
- ad-m/github-push-action master composite
- ruby/setup-ruby v1 composite
- actions/checkout v2 composite
- azure/setup-helm v1 composite
- helm/chart-releaser-action v1.1.0 composite
- actions/github-script 0.9.0 composite
- actions/checkout v2 composite
- actions/upload-artifact v2 composite
- ruby/setup-ruby v1 composite
- trilom/file-changes-action v1.2.4 composite
- actions/checkout v1 composite
- wyozi/contextual-qa-checklist-action master composite
- cla-assistant/github-action v2.1.3-beta composite
- actions/github-script v3.1 composite
- actions/github-script v6 composite
- kolpav/purge-artifacts-action v1 composite
- actions/checkout master composite
- aws-actions/closed-issue-message v1 composite
- peter-evans/create-or-update-comment v1 composite
- sturdy-dev/codeball-action v2 composite
- actions/checkout v2 composite
- github/codeql-action/analyze v1 composite
- github/codeql-action/init v1 composite
- Codesee-io/codesee-detect-languages-action latest composite
- Codesee-io/codesee-map-action latest composite
- actions-rs/toolchain v1 composite
- actions/checkout v2 composite
- actions/setup-java v3 composite
- actions/setup-node v3 composite
- actions/setup-python v2 composite
- ruby/setup-ruby v1 composite
- actions/checkout v2 composite
- codespell-project/actions-codespell master composite
- actions/checkout v2 composite
- actions/github-script v3.1 composite
- actions/checkout master composite
- actions/checkout v2 composite
- wagoid/commitlint-github-action v2.2.5 composite
- actions/checkout v2 composite
- calibreapp/image-actions main composite
- peter-evans/create-pull-request v3 composite
- actions/checkout v2 composite
- docker://docker.io/aquasec/trivy latest composite
- actions/checkout v2 composite
- Mattraks/delete-workflow-runs v2 composite
- actions/checkout v2 composite
- actions/upload-artifact v2 composite
- anchore/scan-action 1.0.6 composite
- actions/checkout v2 composite
- lycheeverse/lychee-action v1.0.8 composite
- actions/checkout v2 composite
- dangoslen/changelog-enforcer v2 composite
- yogevbd/enforce-label-action 2.2.1 composite
- actions/checkout v2 composite
- actions/setup-go v2 composite
- actions/cache v2 composite
- actions/checkout v2 composite
- trilom/file-changes-action v1.2.4 composite
- JamesIves/github-pages-deploy-action 4.1.4 composite
- actions/checkout master composite
- actions/checkout v2 composite
- micnncim/action-label-syncer v1 composite
- actions/checkout v3 composite
- gitleaks/gitleaks-action v2 composite
- actions/first-interaction v1 composite
- MCJack123/ghaction-generate-release-hashes v1 composite
- svenstaro/upload-release-action v2 composite
- actions/checkout v2 composite
- actions/create-release latest composite
- docker/build-push-action v2 composite
- docker/login-action v1 composite
- docker/setup-buildx-action v1 composite
- docker/setup-qemu-action v1 composite
- stefanprodan/helm-gh-pages v1.3.0 composite
- JamesIves/github-sponsors-readme-action 1.0.5 composite
- actions/checkout v2 composite
- akhilmhdh/contributors-readme-action v2.3.4 composite
- bubkoo/contributors-list v1 composite
- tiangolo/issue-manager 0.3.0 composite
- actions/github-script v3 composite
- actions/checkout v2 composite
- azure/setup-helm v1 composite
- ludeeus/action-shellcheck master composite
- actions/labeler v3 composite
- actions/checkout master composite
- lannonbr/issue-label-manager-action 2.0.0 composite
- actions/checkout v2 composite
- crazy-max/ghaction-github-labeler v3 composite
- actions/checkout v2 composite
- apache/skywalking-eyes v0.2.0 composite
- actions/checkout v2 composite
- iterative/link-check.action v0.7 composite
- LouisBrunner/checks-action v1.0.0 composite
- actions/checkout v2 composite
- iterative/link-check.action v0.7 composite
- actions/checkout v3 composite
- actions/checkout master composite
- yogevbd/pr-lint-action master composite
- actions/checkout v2 composite
- actions/setup-python v2 composite
- azure/setup-helm v1 composite
- bitnami/chart-categories-action master composite
- helm/chart-testing-action v2.0.1 composite
- helm/chart-testing-action v2.1.0 composite
- helm/kind-action v1.1.0 composite
- helm/kind-action v1.2.0 composite
- actions/checkout v2 composite
- actions/setup-python v1 composite
- actions/checkout v3 composite
- github/super-linter/slim v4 composite
- dessant/lock-threads v2.0.3 composite
- actions/checkout v2 composite
- actions/setup-node v1 composite
- lycheeverse/lychee-action v1.0.8 composite
- actions/checkout v2 composite
- actions/setup-node v1 composite
- lycheeverse/lychee-action v1.0.8 composite
- actions/checkout v2 composite
- devmasx/merge-branch v1.3.1 composite
- actions/cache v2 composite
- actions/checkout v2 composite
- actions/setup-python v2 composite
- peaceiris/actions-gh-pages v3 composite
- lee-dohm/no-response v0.5.0 composite
- actions/checkout v2 composite
- stefanzweifel/git-auto-commit-action v4 composite
- actions/checkout v2 composite
- alexrogalskiy/github-action-branch-mapper master composite
- stefanzweifel/git-auto-commit-action v4 composite
- actions-ecosystem/action-remove-labels v1 composite
- actions/checkout v3 composite
- peter-evans/create-or-update-comment c9fcb64660bc90ec1cc535646af190c992007c32 composite
- Matticusau/pr-helper v1.3.0 composite
- actions/checkout v1 composite
- ludeeus/action-shellcheck master composite
- technote-space/auto-card-labeler v1 composite
- actions/checkout v2 composite
- cirrus-actions/rebase 1.4 composite
- peter-evans/create-or-update-comment c9fcb64660bc90ec1cc535646af190c992007c32 composite
- peter-evans/rebase 08cedbbd4eabcd913bf091844614eceddaea4a5d composite
- actions/create-release latest composite
- mikepenz/release-changelog-builder-action main composite
- actions/checkout v2 composite
- actions/create-release v1 composite
- haya14busa/action-bumpr v1 composite
- haya14busa/action-cond v1 composite
- haya14busa/action-update-semver v1 composite
- mondeja/remove-labels-gh-action v1 composite
- c-hive/gha-remove-artifacts v1 composite
- bodinsamuel/renovate-automatic-branch v1 composite
- EndBug/add-and-commit v4 composite
- actions/checkout v2 composite
- sangonzal/repository-traffic-action v0.1.4 composite
- actions/checkout v2 composite
- prologic/action-remark-lint v2 composite
- actions/checkout v2 composite
- returntocorp/semgrep-action v1 composite
- ShiftLeftSecurity/scan-action master composite
- actions/checkout v1 composite
- github/codeql-action/upload-sarif v1 composite
- actions/checkout v2 composite
- andresz1/size-limit-action v1 composite
- typoci/spellcheck-action master composite
- actions/checkout v2 composite
- check-spelling/check-spelling v0.0.19 composite
- actions/stale v3 composite
- aws-actions/stale-issue-cleanup v3 composite
- actions/checkout v3 composite
- actions/setup-node v3 composite
- actions/checkout v2 composite
- actions/setup-node v2.1.4 composite
- tretuna/sync-branches 1.2.0 composite
- actions/checkout v2 composite
- stefanzweifel/git-auto-commit-action v4 composite
- Dunning-Kruger/unlock-issues v1.1 composite
- actions/checkout v2 composite
- actions/setup-python v2 composite
- actions/checkout v3 composite
- mszostok/codeowners-validator v0.5.0 composite
- actions/checkout v2 composite
- stefanzweifel/git-auto-commit-action v4 composite
- Actions-R-Us/actions-tagger v2.0.2 composite
- actions/checkout v3.0.1 composite
- actions/github-script v3.1 composite