Business Layer Design in J2EE Project
        Posted  
        
            by 
                user63157
            
        on Programmers
        
        See other posts from Programmers
        
            or by user63157
        
        
        
        Published on 2012-09-01T05:57:58Z
        Indexed on 
            2012/09/01
            9:49 UTC
        
        
        Read the original article
        Hit count: 194
        
design-patterns
Currently the project on which I am working is being developed with Spring, Hibernate and struts. The business layer consists of simple java beans with no behavior in them only properties and getter and setter methods, the services are written on them which operates on them and call DAO layer methods and all. My questions is that is it object oriented way of designing or simply the procedure way in which the data and the functions on which they operate are not together. Please provide your thoughts and inputs on how the business logic is design and implemented in j2ee application, is the domain model contains business methods or are they simply dumb objects which have only data and services written on to them.
© Programmers or respective owner