Search the web
Sign In
New User? Sign Up
domaindrivendesign · Domain-Driven Design
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2588 - 2617 of 15986   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2588
Thank you, Zang - I tend to agree. Fortunately we're pretty uptight and unimaginative here so the project name happens to also be exactly what the code is...
Matt McShane
mcshane_matt
Offline Send Email
Sep 1, 2005
2:40 pm
2589
Thanks, Randy. c2.com is usually one of my first stops for a question like this but for some reason I hadn't ventured over there yet. It's funny, one of the...
Matt McShane
mcshane_matt
Offline Send Email
Sep 1, 2005
2:48 pm
2590
Thanks, Jim. I'd like to probe further into your structure. Let's say you have a well-factored domain package with, as you explained, "horizontal" packages...
Matt McShane
mcshane_matt
Offline Send Email
Sep 1, 2005
2:55 pm
2591
... I would assume you might use the binary dependency on the whatever framework packaged in the jar archive, e.g. don't include the source from 3-rd party...
Dmitriy Kopylenko
dima767
Offline Send Email
Sep 1, 2005
3:07 pm
2592
Matt, The UI and persistence frameworks are different subjects or domains. I would factor them into completely different projects which are then reused to...
Jim Amsden
jim_amsden
Offline Send Email
Sep 1, 2005
5:39 pm
2593
Hi, I am currently working with the packaging of a large software project. My opinion is that the horizontal (business) dimension is more important than the...
Tomas Karlsson
marcellus874
Offline Send Email
Sep 2, 2005
5:05 pm
2594
I'm thinking about different 'population' methods of a domain object as from a repository. Say, you have a CustomerRepository, that has a method GetCustomer(...
Frederik Gheysels
FrederikGhey...
Offline Send Email
Sep 8, 2005
6:39 pm
2595
Hi Frederik, In general, I would advise adopting one of the available O/R mapping solutions - like TopLink, which addresses both issues of object...
Randy Stafford
randalparker...
Offline Send Email
Sep 8, 2005
7:05 pm
2596
How about using Hibernate or any OR-mapping mechanism under the hood of Repository to create business object/domain objects and dirty checking already taken...
jdeena@...
janar82495
Offline Send Email
Sep 8, 2005
7:17 pm
2597
The first thing I do is separate the "population" (i.e. object relational mapping) mechanism from the repository itself, which is where my business logic...
Jeff Lowe
jefflowe7
Offline Send Email
Sep 8, 2005
7:18 pm
2598
Is it against DDD or MVC to have your session/transaction management in the controllers of an MVC style app? dru...
Dru Sellers
drudustinsel...
Offline Send Email
Sep 9, 2005
2:01 pm
2599
It is fine to do that, but there may be two caveats: 1. If you have a business operation that spans MVC actions, then you must ensure that there is a ...
Matthew T. Adams
matthewadams
Offline Send Email
Sep 9, 2005
2:51 pm
2600
First of all, see http://c2.com/cgi/wiki?WhatsaControllerAnyway and http://c2.com/cgi/wiki?ModelModelViewController. These days, when people say "controller"...
Randy Stafford
randalparker...
Offline Send Email
Sep 9, 2005
5:15 pm
2601
Hi, thanks for the answers. Concerning the O/R-M tools: this might be a solution, however, I'd like to think about this without having one specific (or one at...
Frederik Gheysels
FrederikGhey...
Offline Send Email
Sep 9, 2005
7:01 pm
2602
... been populated by the repository (or, in your case, by the Dao). What's your idea on that ? I think if you're not likely to change your ORM strategy, then...
Jeff Lowe
jefflowe7
Offline Send Email
Sep 9, 2005
11:28 pm
2603
I think that, changing your ORM strategy, or using another ORM mapper whithin the same project, is something that is not likely to occur. In fact, this would...
Frederik Gheysels
FrederikGhey...
Offline Send Email
Sep 10, 2005
7:07 am
2604
Hi From a DDD perspective "how do you show that your are only returning a partially inflated aggregate and how do you convey what part or parts of the ...
Shane Mingins
shanemingins
Offline Send Email
Sep 12, 2005
2:35 am
2605
Hi Shane, I have been fighting this same issue as well. It's an issue at the getter side of the house as you have indicated, but also (perhaps even more so) at...
Bert Hooyman
berthooyman
Offline Send Email
Sep 12, 2005
5:37 am
2606
Hey, I'm trying to use DDD in the most academic way. Therefore i want my value objects to be truly immutable (no setters on it). My problem is that some of...
jerome_angibaud
Offline Send Email
Sep 12, 2005
10:52 pm
2607
For your first problem, you'll need a hidden initialization protocol. For your second problem, I don't understand what's wrong with building large value...
Dirk Riehle
dirkriehle
Offline Send Email
Sep 13, 2005
9:47 am
2608
Hi, I think it work fine having constructors with many parameters, and I often use it when writing code. However, I strongly recommend strong typing of the...
Tomas Karlsson
marcellus874
Offline Send Email
Sep 13, 2005
4:46 pm
2609
Thank you Thomas for your usefull thoughs. I agree that strongly typed solution are is much better, but i never went as far as you in writting so fine grained...
jerome_angibaud
Offline Send Email
Sep 13, 2005
10:39 pm
2610
Hi, At page 178, there's a Handling Event Repository which hold an operation with the following signature : findByCargoTrackingId(String). I don't find this...
jerome_angibaud
Offline Send Email
Sep 13, 2005
11:06 pm
2611
Hi, First of all thanks for this incredible book! This is my first post, so here we go. After reading chapter 7, I've tried refactoring a software's domain ...
Thiago Souza
g0athi
Offline Send Email
Sep 14, 2005
6:27 pm
2612
Hi Thiago, all, Could you please expand on: There is a requirement at the software that an entity might "change it's type" in it's life cycle. I would be...
Tom Evans
tce_55436
Offline Send Email
Sep 14, 2005
6:48 pm
2613
... Yes, that is the exciting question here. I'd like to rephrase the question: When the object changes type, does its interface change? Do youhave a situation...
Jan Algermissen
algermissen1971
Offline Send Email
Sep 14, 2005
7:12 pm
2614
What do you mean by change its type? If it is like roles, i.e. a Person can be a Bank Employee, Customer, Guarantor, Debtor in parallel, you can use role...
Dirk Riehle
dirkriehle
Offline Send Email
Sep 14, 2005
7:14 pm
2615
Hi! Thanks for you reply. I thought on use this Role object but I dropped this idea. As it would be difficult to me explain why by e-mail, let me give you the ...
Thiago Souza
g0athi
Offline Send Email
Sep 14, 2005
8:28 pm
2616
Hi, Sorry, the Role pattern you presented me is the decorator pattern. Sorry for that. Well, so i'll just rename PersonDecorator to PersonRole :). Thanks! ...
Thiago Souza
g0athi
Offline Send Email
Sep 14, 2005
8:31 pm
2617
Hi, I think findByCargo(Cargo cargo) is a little more object oriented - if I try to be as theoretical as I can... But in real life, I don't see the difference!...
Tomas Karlsson
marcellus874
Offline Send Email
Sep 14, 2005
8:31 pm
Messages 2588 - 2617 of 15986   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help