dan1st
dan1st
JCHJava Community | Help. Code. Learn.
Created by Franscis123$# on 3/30/2025 in #java-help
Searching DB registers by other field instead PK using JPA
looks good
13 replies
JCHJava Community | Help. Code. Learn.
Created by Franscis123$# on 3/30/2025 in #java-help
Searching DB registers by other field instead PK using JPA
and what do you mean with affecting other methods?
13 replies
JCHJava Community | Help. Code. Learn.
Created by Franscis123$# on 3/30/2025 in #java-help
Searching DB registers by other field instead PK using JPA
Didn't you say something about not using a framework?
13 replies
JCHJava Community | Help. Code. Learn.
Created by Franscis123$# on 3/30/2025 in #java-help
Searching DB registers by other field instead PK using JPA
or alternatively use a typed query
13 replies
JCHJava Community | Help. Code. Learn.
Created by Franscis123$# on 3/30/2025 in #java-help
Searching DB registers by other field instead PK using JPA
em.createQuery() should work
13 replies
JCHJava Community | Help. Code. Learn.
Created by Kale Vivi on 3/29/2025 in #java-help
Hexagonal architecture question
You should do what's clearer/more readable/more maintainable
186 replies
JCHJava Community | Help. Code. Learn.
Created by Kale Vivi on 3/29/2025 in #java-help
Hexagonal architecture question
btw if it's obvious that the class is a port, you might also omit the "Port" suffix from the name - but please be consistent (do the same with all ports)
186 replies
JCHJava Community | Help. Code. Learn.
Created by Kale Vivi on 3/29/2025 in #java-help
Hexagonal architecture question
the port is independent from the actual product
186 replies
JCHJava Community | Help. Code. Learn.
Created by Kale Vivi on 3/29/2025 in #java-help
Hexagonal architecture question
the port specifies what your application needs from the products
186 replies
JCHJava Community | Help. Code. Learn.
Created by Kale Vivi on 3/29/2025 in #java-help
Hexagonal architecture question
.Even when maintaining two adapters: You'd have the same port
186 replies
JCHJava Community | Help. Code. Learn.
Created by Kale Vivi on 3/29/2025 in #java-help
Hexagonal architecture question
The port is part of the application - it's specific to your business logic but not specific to the external product X/Y
186 replies
JCHJava Community | Help. Code. Learn.
Created by Kale Vivi on 3/29/2025 in #java-help
Hexagonal architecture question
Now, when we were talking about app interacting with external product X/Y, you would use the same port for both
186 replies
JCHJava Community | Help. Code. Learn.
Created by Kale Vivi on 3/29/2025 in #java-help
Hexagonal architecture question
At the beginning, we were talking (at least that's what I thought you were asking about and talked about) about using the same port for two different hexagonal architecture applications where I told you why that would be a bad idea.
186 replies
JCHJava Community | Help. Code. Learn.
Created by Kale Vivi on 3/29/2025 in #java-help
Hexagonal architecture question
The things I mentioned before about changing requirements to products and the port having to change: That's about the other side/the exact opposite scenario (when we're talking about product X/Y using the hexagonal architecture and when talking about these)
186 replies
JCHJava Community | Help. Code. Learn.
Created by Kale Vivi on 3/29/2025 in #java-help
Hexagonal architecture question
you can switch out product X with product Y without changing the port - you just write another adapter
186 replies
JCHJava Community | Help. Code. Learn.
Created by Kale Vivi on 3/29/2025 in #java-help
Hexagonal architecture question
It is not specific to product X or Y
186 replies
JCHJava Community | Help. Code. Learn.
Created by Kale Vivi on 3/29/2025 in #java-help
Hexagonal architecture question
and here, ProductPort is specific to the application but written in a way that it does what the application needs
186 replies
JCHJava Community | Help. Code. Learn.
Created by Kale Vivi on 3/29/2025 in #java-help
Hexagonal architecture question
and it would look like that
public interface ProductPort {//other names are possible - for example you might not need the 'Port' suffix
YourResultType someFunctionalityOfProduct(Arguments here);
//possibly other methods
}
public interface ProductPort {//other names are possible - for example you might not need the 'Port' suffix
YourResultType someFunctionalityOfProduct(Arguments here);
//possibly other methods
}
and in your application
private final ProductPort product;//you can inject this via DI or whatever

void doSomething(){
YourResultType result = someFunctionalityOfProduct(...);
}
private final ProductPort product;//you can inject this via DI or whatever

void doSomething(){
YourResultType result = someFunctionalityOfProduct(...);
}
186 replies
JCHJava Community | Help. Code. Learn.
Created by Kale Vivi on 3/29/2025 in #java-help
Hexagonal architecture question
so the adapter is on the driven side
186 replies
JCHJava Community | Help. Code. Learn.
Created by Kale Vivi on 3/29/2025 in #java-help
Hexagonal architecture question
it's requesting data
186 replies