Although obviously not all scenarios can be covered by a single design, is it generally felt now that ORM classes should be passed to and fro between the presentation and business layer (either local or remote), replacing the need for data transfer objects? As far as I can see, using ORM classes presents problems of unnecessary eager loading, context management issues and tight coupling, but also saves a great deal of time and keeps things simple. Is there now a standard approach that generally favours one over the other (for the majority of situations)?
|
feedback
|
|
This is very interesting question and one I have been investigating and experimenting with over the pass two years. I think there really is no right or wrong answer here. I don't think you can simply say I want one over the other because typically you may want a hybrid depending on what your clients are (webpage,ws,machine and/or local,remote). The important thing to remember here is what the pros and cons are to each offering and applying this based on your requirements. For Example:
By wrapping your system in layers and carefully exposing and securing them, you can produce various APIs for many clients of different types. | ||||
|
feedback
|
|
I think DTOs existence is related to JPA/Hibernate flaws. If you could always do transparently lazy initialization you will never use them. So using DTOs is a contract where my domain/workspace always lose (duplication everywhere). Summing up, you can use them but you have to hate them :) | |||
|
feedback
|
|
Tight coupling? Please explain. As for me DTO is an Anti-Pattern. EJB3 allows us to omit using them. You can just force your lazy initialization before sending Entity to the client. Of course if you need only two of 30 fields to send to a client you just send them. But if is the whole copies all the time as in my current project -- try to get rid of that DTO. I don't see any reason to use them. You send a business object to the client as a client asked. Why to use wrapper? | |||
|
feedback
|
|
I agree with the last "speaker" why to use a wrapper when in ejb3?? We build a quite complex system without DTO but using Entities (JPA) it worked find. It was clear... | |||
|
feedback
|
|
working only with entities would be fine if the GUI controller sends object propertires to the forms and not entity objects. On the other hand, if entities are used and these entities have many-to-one relationships, then one should expect to see some nasty exceptions, if the entities are not eagerly fetched by the entity manager. Such situations can be observed when attempting to populate tags of Spring MVC for example, or similar constructs of other GUI components. Furthermore, DTOs are a very good place for placing extra annotations such as validation annotations or JAXB, etc | |||
|
feedback
|
|
I have several issues against using entities at presentation layer:
I have a issues against DTO:s too:
Things considered, I'll vote for using dto:s for all projects, eliminating JPA too. So, my stack becomes something like:
| |||
|
feedback
|