Needless to say I'm kind of late jumping on the CS train. Currently I use CF's ORM (hibernate) in most of my projects. I'm not really seeing the benefits of using the framework as for me personally I tend to just have one CFC with its properties and use ORM to handle the data. Therefore I don't really see myself building many gateways,DAOs where the dependency injection will really pay off. I will build a service layer on occasion. Having said that is that bad practice? Should I still be creating these various gateways,DAOs even though ORM will be doing most of the work out of the box? I'm not trying to ask about design patterns here I'm just trying to understand if this is still useful for me to pick up as it really feels like i'm taking one step back. I do like the benefits of what AOP can possibly bring to my world. Is CS still actively being developed it seems everything that I find is somewhat stale information. Is there an example or people that have done presentations on using CS with ORM (I see many older things talking about transfer) w/hibernate. Is there other frameworks that could possibly be easier to see the benefits right off the bat (with ORM)? I've seen a few of the CF Meetup presos on it but it still seems somewhat vague. Thanks for your input.
--
You received this message because you are subscribed to the Google Groups "ColdSpring-Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to coldspring-use...@googlegroups.com.
To post to this group, send email to coldspri...@googlegroups.com.
Visit this group at http://groups.google.com/group/coldspring-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
One of the main benefits of IoC is in testing. Writing a unit test is a lot easier when you can just mock a gateway instead of having to wrangle with the ORM. It also helps keep your code loosely coupled.