Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

domaindrivendesign · Domain-Driven Design

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 4073
  • Category: Software
  • Founded: Sep 27, 2002
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 3872 - 3901 of 24070   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
3872 gregory young
gumboismadeo... Send Email
Jun 4, 2006
8:24 am
This just came up in a discussion and I quickly realized that although I handle this in my own way nut I have heard very little in official position on the...
3873 Bil Simser
sim0099 Send Email
Jun 7, 2006
3:16 am
Hi guys, Anyone have an opinion on how much information needs to exist in the UI to make decisions without a) putting *real* business logic in the UI layer and...
3874 Jonathan Harley
agilista Send Email
Jun 7, 2006
4:59 am
Hey Bil, Arguably, a speadsheet is a special case of application since it's raison d'etre is to massage related rows of data visually.. On the other hand, I...
3875 Bil Simser
sim0099 Send Email
Jun 7, 2006
12:23 pm
Jonathan, Good point and MVP would certainly be a pattern to follow here. I'm struggling though with something like a model that holds 10,000 objects vs. doing...
3876 David Lanouette
davidlanouette Send Email
Jun 8, 2006
1:12 am
... Assuming that it wasn't a realtime type of system, I'd suggest that might be a great use of a domain side (or even UI side) cache. But you do bring up a...
3877 Gregg Irwin
greggirwin143 Send Email
Jun 8, 2006
8:47 pm
Hi Bil, BS> Imagine a spreadsheet type app where users would enter something and there BS> would be a ripple effect that affects multiple rows of information...
3878 Jonathan Harley
agilista Send Email
Jun 9, 2006
5:54 am
Took the words out of my mouth Gary. I was thinkning Flyweight too. The bottom line for me is that the UI is simply a view of the object graph. Any...
3879 Carlos Henrique Estev...
chmendonca Send Email
Jun 10, 2006
12:55 am
Hello all! I've ordered the above mentioned book but it will take from 6 to 8 weeks to ship (I live in Brazil). In the meantime, I was wondering if Nilsson...
3880 Dirk Riehle
dirkriehle Send Email
Jun 10, 2006
4:05 pm
CALL FOR PARTICIPATION WIKISYM 2006: THE 2006 INTERNATIONAL SYMPOSIUM ON WIKIS August 21-23, 2006, Odense, Denmark CO-LOCATED WITH ACM HYPERTEXT 2006 See...
3881 Rafael de F. Ferreira
rafaeldff Send Email
Jun 12, 2006
12:19 am
If the client is expected to check the data it is redundant to recheck it at object construction. Mind you that redundancy isn't always bad, and a purist might...
3882 ryzamm Send Email Jun 12, 2006
4:03 am
How about if only giving fetching operation on Repository to Domain object?.. That's mean we need to make sure Add,Update and Remove are restrict to use from...
3883 ryzamm Send Email Jun 12, 2006
6:48 pm
Follow DDD book, I understand that specification and repository is part of domain model but not involve in any business logic of the domain, then in this group...
3884 yahoogroups@...
jhrothjr Send Email
Jun 12, 2006
10:17 pm
From: "ryzamm" <ryzamm.at.yahoo.com@...> To: "domaindrivendesign@yahoogroups.com" ...
3885 Dan Bergh Johnsson
dan_omegapoint Send Email
Jun 13, 2006
12:04 am
Indeed, a domain constructor rechecking what the client tier has already checked is certainly redundant (which, as Rafael carefully points out, is an...
3886 Tomas Karlsson
marcellus874 Send Email
Jun 13, 2006
4:08 pm
Hi, In my opinion, the domain should always check data! The reason is simple: client depends on domain. This mean domain should protect itself from any client...
3887 Juha-Pekka Tolvanen
jpt_mcc Send Email
Jun 14, 2006
10:30 am
C A L L F O R P A P E R S ============================= The 6th OOPSLA Workshop on Domain-Specific Modeling October 22, 2006 Portland, Oregon, USA ...
3888 Wayne Vucenic
wvucenic Send Email
Jun 16, 2006
8:47 pm
Hi Carlos, ... The book doesn't have a CD, and I didn't notice any URL for the source code. But the book's website (which doesn't currently have any real ...
3889 Bruno Oliveira da Silva
s0nicbr Send Email
Jun 19, 2006
6:04 am
Which the patterns, to represent components that not make part of domain model? Example: In HTML form, we have a combobox element search with two options,...
3890 Bert Hooyman
berthooyman Send Email
Jun 19, 2006
6:34 am
Hi Bruno, I consider populating the combo box with a list of values the more interesting part of the problem (more so than retrieving the value from an HTML...
3891 Bruno Oliveira da Silva
s0nicbr Send Email
Jun 19, 2006
12:25 pm
Than, a combobox with name "filterSearch&quot; and two values: name, address, is a part of User class? Parting from principle, that a User, human from real word,...
3892 Bert Hooyman
berthooyman Send Email
Jun 19, 2006
12:58 pm
name and address are properties of the user - they are part of your domain model of user. Comboboxes definitely are not. They live in the presentation tier of...
3893 Chris Gardner
chris_gardner76 Send Email
Jun 21, 2006
10:52 am
This begs more general questions (probably already addressed)for UI and application layer interaction. * Should the application layer accept and return...
3894 Carlos Miranda
cevmiranda Send Email
Jun 26, 2006
3:35 pm
Folks, What do you think about Servlets dealing with Entities. It could occur in two ways: 1. Services returning searched data 2. Servlets creating Entities to...
3895 Gary
gdw_62 Send Email
Jun 27, 2006
7:47 pm
I'm relatively new to "real" object-oriented design/development (i.e. patterns/refactoring etc.) although I've been working with OOP languages for quite some...
3896 Jesse Napier
jnapier171 Send Email
Jun 28, 2006
5:45 am
I have heard a lot of talk in this forum about keeping security out of the domain model. I have been trying to do that on my latest projects, but on a new...
3897 Alasdair Gilmour
alasdair_gil... Send Email
Jun 28, 2006
10:35 am
My quick take on this: Because the maintenance of user roles is an important part of the end-user functionality of the application, then they're definitely a...
3898 Alasdair Gilmour
alasdair_gil... Send Email
Jun 28, 2006
1:02 pm
A problem I often seem to come across when trying to apply DDD principles is that of using the Aggregate pattern where the domain contains deeply nested ...
3899 Tony Pitluga
drfatbooty Send Email
Jun 28, 2006
1:45 pm
We have a very similar situation on the project that I am working on. I struggled with this for a while. The direction we decided to go was to create aggregate...
3900 Bil Simser
sim0099 Send Email
Jun 28, 2006
2:40 pm
I had the same problem with a pet project I put together. Here's what the hierarchy look like: Category Forum Topic Post It's not as deep as your example but...
3901 Alasdair Gilmour
alasdair_gil... Send Email
Jun 28, 2006
2:42 pm
Thanks Tony I still struggle with splitting it up this way. Lets say I create a couple of aggregates from the original hierarchy (with the same pattern of ...
Messages 3872 - 3901 of 24070   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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