
Originally Posted by
leonchen
One paragraph from chapter 1 of "Professional Java Development With The Spring Framework":
"The Big Picture
...Domain objects will typically be passed up to the presentation layer, which will display data they contain, but not modify them, which will occur only within the transactional boundaries defined by the business services layer. ... "
Q1: So, If I pass the domain objects to the presentation layer, and let the user modify the object's contents directly, then send back to service layer to update db, will there be any problem?