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 your group to be featured on the Yahoo! Groups website? 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 2376 - 2405 of 15984   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2376
Here is a paper I recently finished. I am a complete fan of Domain driven design. When I read the book it said things so well, things that I wanted to say for...
SirGilligan
Offline Send Email
Jul 1, 2005
8:06 pm
2377
hi,every one. There is a example which called "Chemical Warehouse Packer". in chapter Nine. Let's think about a scenario that we put two chemical into a...
domaindrivendesign
domaindriven...
Offline Send Email
Jul 4, 2005
8:22 am
2378
Hi, I'm reading the DDD book, which I find very interesting. However, there's a specific issue in where I need some more clarification. Eric Evans says that...
FrederikGheysels
FrederikGhey...
Offline Send Email
Jul 9, 2005
5:16 pm
2379
Any OR mapping tool will have several options for handling transactions. For example, in Hibernate, the simplest method is to pass a session to your repository...
Rex Madden
rexmadden
Offline Send Email
Jul 9, 2005
6:18 pm
2380
If one develops with Java, the Spring declarative transaction management engine, which is an abstraction that works well with different transaction management...
Dmitriy Kopylenko
dima767
Offline Send Email
Jul 9, 2005
7:10 pm
2381
... transactions. For ... your ... flushed ... a web ... scenarios, ... I would be very interested to learn about those more sophisticated patterns. Do you...
andrew_raphael_small
andrew_rapha...
Offline Send Email
Jul 9, 2005
7:22 pm
2382
As Dmitriy just mentioned, Spring is a good place to look for some standard transaction handling mechanisms. If you're using Hibernate, there are some simple...
Rex Madden
rexmadden
Offline Send Email
Jul 9, 2005
7:32 pm
2383
We are doing this by using Spring's AOP framework. Here is an article explaining the concepts: http://www.onjava.com/pub/a/onjava/2005/05/11/spring.html...
Henri Shahrouz
henri_shahrouz
Offline Send Email
Jul 9, 2005
11:33 pm
2384
Hi, My current predicament is that I have a ProductRepository that loads up an IProduct. All products are categorised, so IProduct is associated to a category...
Nicholas Robinson
fromconcept
Offline Send Email
Jul 10, 2005
10:01 am
2385
I've been exploring the use of Fit storytests to start/help in clarifying and evolving a ubiquitous language for a domain. This means finding ways to be more...
Rick Mugridge
rickmugridge
Offline Send Email
Jul 10, 2005
4:19 pm
2386
excellent. which day? ... -- Rex Madden Director of Technology Cyrus Innovation IT Consulting and Agile Software Development New York City, New York ...
Rex Madden
rexmadden
Offline Send Email
Jul 10, 2005
6:49 pm
2387
Hi Rex, The Wednesday afternoon. Cheers, Rick...
Rick Mugridge
rickmugridge
Offline Send Email
Jul 10, 2005
9:19 pm
2388
Folks, I apologize for the intrusion, but we have several openings for Model-Driven Development Consultants using our technology ...
iyad@...
ijabri
Offline Send Email
Jul 12, 2005
12:43 am
2389
spell 'technolgy' as 'technology' ... http://jobsearch.monster.com/getjob.asp?JobID=31577631 ... __________________________________________________ Do You...
hal arnold
halarnold2000
Offline Send Email
Jul 12, 2005
4:01 am
2390
is it Open Source? ... Model-Driven ... applications...
Henry
henrydjacob
Offline Send Email
Jul 13, 2005
3:57 am
2391
Hi Iyad, we did something similar with a UML virtual machine back in the bubble: http://www.riehle.org/computer-science/research/2001/oopsla-2001.html (The...
Dirk Riehle
dirkriehle
Offline Send Email
Jul 13, 2005
4:00 am
2392
There's a great example of separating the transactional layer in Chapter 8 of "Hibernate in Action" by Christian Bauer and Gavin King. Billy McCafferty ... ...
Billy McCafferty
wmccafferty
Offline Send Email
Jul 13, 2005
4:00 am
2393
Hi all, we started using Hibernate about a week ago, and even though I think it is probably the best of the ORM tools available, it does get in the way with ...
Dirk Riehle
dirkriehle
Offline Send Email
Jul 13, 2005
9:31 am
2394
Sorry about my broken post previously, I hit CTRL+Enter by mistake _____ From: domaindrivendesign@yahoogroups.com [mailto:domaindrivendesign@yahoogroups.com]...
Roni Burd
roniburd
Offline Send Email
Jul 13, 2005
1:11 pm
2395
Hi, I've been using hibernate also, and wanted to add/comment on a few things that Dirk said. 1) The only real way to create value objects without repeating...
Roni Burd
roniburd
Offline Send Email
Jul 13, 2005
1:20 pm
2396
... We do this all the time. You have to implement UserType, but only for your "mapper" class. These are like factories. For example, I have a few UserTypes...
Rex Madden
rexmadden
Offline Send Email
Jul 13, 2005
1:26 pm
2397
Hi, I've been using hibernate also, and wanted to add/comment on a few things that Dirk said. The only real way to create value objects without repeating the...
Roni Burd
roniburd
Offline Send Email
Jul 13, 2005
1:27 pm
2398
Roni, ... A UserType tells Hibernate how to persist your value object. You do not need to change your value object at all; it doesn't need to extend or ...
Molitor, Stephen L
steve_molito...
Offline Send Email
Jul 13, 2005
2:14 pm
2399
What is the best way to acquire a new instance of a child object. For example: Let's say we have a parent class Company and a child class Employee. We also...
Dru Sellers
drudustinsel...
Offline Send Email
Jul 13, 2005
2:48 pm
2400
Well, since the "Company" is the aggregate root, I'd lean towards giving it a responsibility of managing its dependent objects. So for creating instances of...
Dmitriy Kopylenko
dima767
Offline Send Email
Jul 13, 2005
3:56 pm
2401
As I always say, in these situations, you must have application requirements to choose a model. Is this a real example? If so, tell us more about the purpose...
Eric Evans
ericevans0
Offline Send Email
Jul 13, 2005
4:29 pm
2402
Dirk (not Roni!) Sorry, didn't read your post carefully enough. Regarding #2, I didn't ... access="field" which avoids using getters and setters but goes to...
Molitor, Stephen L
steve_molito...
Offline Send Email
Jul 13, 2005
4:34 pm
2403
First: I left my DDD book in another city. I am currently working remote, doh! :( The Company class represents one of our customers the AddEmployee method ...
Dru Sellers
drudustinsel...
Offline Send Email
Jul 13, 2005
4:36 pm
2404
So, then this is the generic subdomain of access control and security? The entire purpose of these objects is to determine whether a particular user has access...
Eric Evans
ericevans0
Offline Send Email
Jul 13, 2005
5:02 pm
2405
... Eric, I just love the way you say, "it depends"....
Ramon Leon
gnaritas2002
Offline Send Email
Jul 13, 2005
5:15 pm
Messages 2376 - 2405 of 15984   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