Skip to search.
domaindrivendesign · Domain-Driven Design

Group Information

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

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 273 - 303 of 23085   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
273 Logan, Patrick D
patrickdlogan Offline Send Email
Dec 1, 2003
9:48 pm
... I'm not sure how well known this paper is, but it's worth reading... http://www.martinfowler.com/apsupp/recurring.pdf (PDF) "Many business processes are...
274 domaindrivendesign@ya... Send Email Dec 1, 2003
11:40 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the domaindrivendesign group. File :...
276 Dave Ford
dford@... Send Email
Dec 2, 2003
8:04 pm
What is the difference between DAO and repository? Dave Ford...
277 Dave Ford
dforddford Offline Send Email
Dec 2, 2003
8:23 pm
My repositories all have a begin() and commit() method. For example: repos.begin(); Person p = repos.getById("123"); p.setLastName("Smith"); repos.commit(); ...
278 sobesoft Offline Send Email Dec 3, 2003
7:12 pm
Isn't there one DAO for each domain object yet only one repository for your entire application? ~Dave Foderick...
279 eric+domainlanguage.c...
ericevans0 Offline Send Email
Dec 3, 2003
9:38 pm
One repository per type of object. ... From: sobesoft sobesoft@... Date: Wed, 03 Dec 2003 19:09:23 -0000 To: domaindrivendesign@yahoogroups.com Subject:...
280 Matthew T. Adams
matthewadams Offline Send Email
Dec 3, 2003
9:56 pm
Yes. Typically a DAO ("data access object") is an object that belongs to the layer between your domain objects and their persistent datastore and has the ...
281 rbenspa Offline Send Email Dec 4, 2003
7:52 pm
... Here is a specialized paper where time has an important element. I haven't waded through it myself, but someone might find it interesting. The title is An...
282 Dave Ford
dforddford Offline Send Email
Dec 4, 2003
10:36 pm
Hi Matthew. Thank for the answer. Don't I know you from JDO-Central? I'm not sure I understand your answer. It sounds to me like the DAO description and the...
283 Stafford, Randy
randalparker... Offline Send Email
Dec 4, 2003
11:19 pm
Your PersonHome is like a Repository. Let's say it implemented findByID using a ResultSet Adaptor that knew how to adapt the columns in the ResultSet to the...
284 Matthew Adams
matthewadams Offline Send Email
Dec 5, 2003
5:50 pm
Hi Dave, Yep, you know me from JDOCentral. ... I can see where you might have been confused, as the term "repository" can get overloaded. After reviewing...
285 tim_huske Offline Send Email Dec 8, 2003
10:13 am
While reading Domain Driven Design, I was reminded of a couple of essays from Fred Brooks, in particular "No Silver Bullet-Essence and Accident in Software...
286 Josh.Knowles@...
josh_knowles Offline Send Email
Dec 16, 2003
7:49 pm
I am only about half-way through Eric's book so forgive me if this question is answered later in the text... I am implementing a Domain Model which has a...
287 J. B. Rainsberger
nails762 Offline Send Email
Dec 16, 2003
7:56 pm
... I don't see how you can cache anything at all, then. Any caching strategy would be randomized, at best. Is 100% data integrity not a requirement? -- J. B....
288 Stafford, Randy
randalparker... Offline Send Email
Dec 16, 2003
8:03 pm
Hi Josh, You've identified at least three separate concerns here: cache staleness, identity integrity in memory, and graph connectedness. It may be helpful to...
289 Josh Knowles
josh_knowles Offline Send Email
Dec 16, 2003
8:09 pm
Yes 100% data integrity is a requirement, and I could go directly to the datastore upon every get/set, but I am running into problems because I rely on...
290 Stafford, Randy
randalparker... Offline Send Email
Dec 16, 2003
8:12 pm
<JavaAssumption> Just implement your IdentityMap with java.lang.ref.SoftReferences or java.lang.ref.WeakReferences. </JavaAssumption> Randy ... From: Josh...
291 Josh Knowles
josh_knowles Offline Send Email
Dec 16, 2003
8:18 pm
Randy, Let me see if I can elaborate a bit better: I am modeling a network switch. This switch contains, among many things, ports and vlans. I currently have...
292 Rim, Mark
markrim Offline Send Email
Dec 16, 2003
8:20 pm
josh, from Fowler's Patterns of Enterprise Application Architecture: * Optimistic Offline Lock (416) - add a version number to your objects. check it and...
293 Stafford, Randy
randalparker... Offline Send Email
Dec 16, 2003
8:43 pm
I think I understand. Your follow-on question was "Do I cache the query, or each object returned from the query or perhaps nothing at all?" I didn't...
294 Pablo Schor
pablo_schor Offline Send Email
Dec 16, 2003
9:00 pm
maybe is not the appropriate forum, but does anyone know how to implement optimistic lock with EJB CMP? Thanks, Pablo ... From: Rim, Mark To:...
295 Josh Knowles
josh_knowles Offline Send Email
Dec 16, 2003
9:27 pm
Thanks! I will look into the WeakReference object that you suggested. ... From: Stafford, Randy [mailto:rstafford@...] Sent: Tuesday, December 16,...
296 Gene Volovich
gene_volovich Offline Send Email
Dec 23, 2003
4:51 pm
In New York City, the Design Patterns Study Group is looking at Eric's "Domain Driven Design" right now.  We meet every Monday to discuss patterns-related...
297 J. B. Rainsberger
nails762 Offline Send Email
Dec 23, 2003
10:58 pm
... I see almost everything as Value Objects, because I'm a Test-Driven Design practitioner. Everything's a Value Object because I often use assertEquals() to...
298 Keith Ray
attkeithray Offline Send Email
Dec 24, 2003
2:20 am
I think of value objects (mutable and immutable), entity objects, and "Other" including "stateless" objects... For example, a "configuration object" may be a...
299 Eric Evans
ericevans0 Offline Send Email
Dec 24, 2003
3:27 am
Two points, explained below: -the book is mostly about the domain layer -entities and values only apply to software based on a model One thing I'll point out...
300 Ralph Johnson
rej_13 Offline Send Email
Dec 24, 2003
11:01 am
From: "J. B. Rainsberger" <jbrains@...> Subject: Re: [domaindrivendesign] Terminology question on Value Objects and Entities I see almost everything as...
301 J. B. Rainsberger
nails762 Offline Send Email
Dec 25, 2003
7:13 pm
... I'm not sure /why/ all this extra stuff is needed, but then, I haven't finished reading the book yet, so that may explain my uncertainty. I suspect that my...
302 christiaan_db Offline Send Email Dec 30, 2003
6:47 pm
Hi Eric, I just bought your book and I enjoy reading it (I havent finished it yet)! I also have a question about Entities versus Values. Although your ...
303 Jeff Grigg
jeffgrigg63132 Offline Send Email
Dec 31, 2003
8:28 pm
... I'm sure that the JFluid team would love to have your support for their request to enhance the JVM to support such things: ...
Messages 273 - 303 of 23085   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