mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-14 08:58:26 +00:00
fix: Fixed some typos (#3153)
Signed-off-by: depthlending <bikangning@outlook.com>
This commit is contained in:
@@ -180,7 +180,7 @@ Hexagonal Architecture is particularly beneficial in scenarios:
|
||||
* There is a requirement for high testability and maintainability.
|
||||
* The application should remain unaffected by changes in external interfaces.
|
||||
|
||||
## Real-World Applications of Hexagonal Architecure Pattern in Java
|
||||
## Real-World Applications of Hexagonal Architecture Pattern in Java
|
||||
|
||||
* Implemented extensively within enterprise applications that leverage frameworks like Spring.
|
||||
* Used in microservices architectures to maintain clear boundaries and protocols between services.
|
||||
|
||||
@@ -43,7 +43,7 @@ public class Data {
|
||||
/**
|
||||
* Constructor of Data class.
|
||||
* @param key data key
|
||||
* @param value data vlue
|
||||
* @param value data value
|
||||
* @param type data type
|
||||
*/
|
||||
public Data(final int key, final String value, final DataType type) {
|
||||
|
||||
Reference in New Issue
Block a user