java-design-patterns
java-design-patterns copied to clipboard
Design patterns implemented in Java
https://www.oreilly.com/library/view/j2ee-design-patterns/0596004273/re05.html


Fix Inssue #1957 about Casting
Bumps logback-core from 1.2.3 to 1.2.9. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
There's always a checkstyle violation in my pull request. I have run several kinds of checkstyle tools in my local machine but there's no error. So I can't find the...
Pull request title - Add component pattern implementation and uml class diagram. - This is to solve the issue https://github.com/iluwatar/java-design-patterns/issues/556. Pull request description - Implement the money pattern according to...
In the current example of the Visitor patter the `UnitVisitor` described as follow: ```java public interface UnitVisitor { void visitSoldier(Soldier soldier); void visitSergeant(Sergeant sergeant); void visitCommander(Commander commander); } ``` This...
Description: The View Helper design pattern aims to separate the business logic from the presentation layer by using helper components to handle processing and formatting. This enhances the maintainability and...
I use hibernate and h2 inherited from the parent pom.xml whose version are `5.2.18.Final`. But I find the `org.hibernate.dialect.H2Dialect` extends from `org.hibernate.dialect.Dialect` didn't override method `getCurrentSchemaCommand`, which leeds it reture...