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...
Show off your group to the world. Share a photo of your group with us.

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 5468 - 5499 of 16021   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5468
Web programming has taken us pretty far away from "client server" apps, but with the rich internet application technologies gaining popularity (Flex, AJAX,...
Chris Norton
norton_chris...
Offline Send Email
Jun 2, 2007
11:20 pm
5469
I'm just starting to apply some techniques that stem from DDD. I believe that Value Objects can help implementing a more robust model. But I feel unsure about...
MartinAhrer
Offline Send Email
Jun 2, 2007
11:21 pm
5471
Probably I didn't make it clear, yes "all" of my comments are cautions about "implementation choices", but I guess they are related to DDD (I can't think of...
Ertugrul Uysal
ertugrul_uysal
Offline Send Email
Jun 2, 2007
11:23 pm
5472
Hi Martin, Hibernate will access private setters for creating an object. But JSF does not (and it forces the use of Integer instead of int, etc, which can...
Rick Mugridge
rickmugridge
Offline Send Email
Jun 3, 2007
8:11 am
5473
Hi David, It depends on where the risks are, and what kind of feedback is important early. Unless something else is pressing, I like to start on the domain...
Rick Mugridge
rickmugridge
Offline Send Email
Jun 3, 2007
8:38 am
5474
Fatter Client, Fat Client, Thin Client I would add another architecture to that list, the one I use most, you can call it Smart Client/App Server if you like. ...
Udi Dahan
udidahan7
Offline Send Email
Jun 3, 2007
11:04 am
5475
We are using .NET and I have used Fitnesse before with mixed success. We started writing user stories as a response to the "missing link" between business and...
David Winslow
davidfromden...
Offline Send Email
Jun 3, 2007
1:30 pm
5476
Rick, thanks for taking time for this detailed answer! I was already thinking of factory methods that would copy a value object and modify one or multiple...
MartinAhrer
Offline Send Email
Jun 3, 2007
6:25 pm
5478
Good day to all! I'm creating a Windows Forms application which has a domain layer that is not really very complex. I retrieve and update an Excel file which...
Joey Samonte
dyowee23
Offline Send Email
Jun 4, 2007
1:41 pm
5479
Hey Udi, That was my point exactly.. You can use DDD in SOA, Smart Client, Web Applications, etc. It's not an implementation, it's a style of design and ...
Jonathan Harley
agilista
Offline Send Email
Jun 4, 2007
2:44 pm
5480
Those don't seem to be "naturally unique" values. It would seem to me that you could have two John Smith's or related employees who both have the same address....
gregory young
gumboismadeo...
Offline Send Email
Jun 4, 2007
6:37 pm
5481
I have a rich client application .. which reads a graph of objects from a server and the GUI lets the users edit the graph ( via the gui ofcourse).. For...
Surya
uab_bound2003
Offline Send Email
Jun 4, 2007
6:56 pm
5482
If I recall correctly, we used "dirty" flags which is part of what the UoW does. Then you do the inevitable.. For each object in the graph, check if it's...
Jonathan Harley
agilista
Offline Send Email
Jun 4, 2007
7:34 pm
5483
Have you had a look at Spring Validation features - what you describe is exactly what it is meant to do....
Jon Ceanfaglione
cis_jcean
Offline Send Email
Jun 4, 2007
7:56 pm
5484
Yes, exactly, for example search this <http://www.ipass.net/vmalik/gemstone.html> 13-year-old GemStone/Smalltalk FAQ for "markDirty". I also discussed that...
randy stafford
randalparker...
Offline Send Email
Jun 4, 2007
8:18 pm
5485
Hi David, ... Without customer involvement at all, it's simpler to use XUnit, with good IDE support and especially refactoring. I'm currently working on a ...
Rick Mugridge
rickmugridge
Offline Send Email
Jun 5, 2007
12:11 am
5486
Hi, This is a technical question but relates closely to the DD style. A while ago there was a discussion about greedy aggregates and the approach used by some...
jupitermoon_beam
jupitermoon_...
Offline Send Email
Jun 5, 2007
2:58 pm
5487
My opinion is that the domain classes should always [or what is practical] map to the business problem/domain you are working with. Therefore, there is not...
Matt Vaughn
mjvaughnsax
Offline Send Email
Jun 5, 2007
3:36 pm
5488
Hi Matt, Thanks for the response: I am comfortable with the approach I have taken as it maps the business and I'm not really trying to go over the whole greedy...
jupitermoon_beam
jupitermoon_...
Offline Send Email
Jun 5, 2007
4:10 pm
5489
One approach I've used is to 'type' my validation. When I first struggled with validation in the domain I felt that the most apt method for failing on...
jupitermoon_beam
jupitermoon_...
Offline Send Email
Jun 5, 2007
4:18 pm
5490
... aggregate root. ... I've always struggled with the Aggregate pattern a bit, because my reading of the DDD book suggests that you *can't* nest aggregates...
Alasdair Gilmour
alasdair_gil...
Offline Send Email
Jun 5, 2007
4:26 pm
5491
I'm using Hibernate and Spring and immutability has been a headache for me for some time too. The main problem for me was that I didn't want my client classes ...
Juan F Cervera
jfcervera
Offline Send Email
Jun 6, 2007
3:22 pm
5492
I use Hibernate not NHibernate, but I guess the idea is basically the same. The way I do this is by splitting my Hibernate Entities (tables) into several...
Juan F Cervera
jfcervera
Offline Send Email
Jun 6, 2007
3:23 pm
5493
may be i am missing something ... can you use something like this ...
Surya
uab_bound2003
Offline Send Email
Jun 6, 2007
4:07 pm
5494
For a web application which has the following layers 1) Web Layer 2) Service Layer 3) Domain Layer 4) Repository Would it be Web layer -->Service --> Domain ...
Ingudam Manoranjan
ingudam.mano...
Offline Send Email
Jun 7, 2007
6:16 pm
5495
I think you'll find from all the discussion here that there is no right answer, just different opinions depending on what people prefer. My structure...
Bob Hanson
mnbob70
Offline Send Email
Jun 7, 2007
7:29 pm
5496
Is anyone out there using a language like Eiffel or spec# (as an exercise I assume nobody has a production spec# system) in conjunction with DDD? What are your...
gregory young
gumboismadeo...
Offline Send Email
Jun 7, 2007
8:06 pm
5497
Hey, my thought is to use MVP (or MVC) Web -> Presentation/Controller -> Service Presentation -> Domain Service -> Repository -> Domain Service -> Domain All...
Harry Chou
yuheng98
Offline Send Email
Jun 7, 2007
8:39 pm
5498
Thanks to all responses! =) But what if I want to validate a collection of Customer, aside from validation in each Customer? That each customer should have a...
Joey Samonte
dyowee23
Offline Send Email
Jun 8, 2007
4:17 am
5499
It seems like you are still stuck wth a majo problem of using exceptions... You can only return 1 error at a time. As an example lets say that I failed putting...
gregory young
gumboismadeo...
Offline Send Email
Jun 8, 2007
4:28 am
Messages 5468 - 5499 of 16021   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