|
Re: build pojos in action failed
|
| |
The javadocs say this about java.lang.ClassFormatError
* Thrown when the Java Virtual Machine at...
|
|
Re: A Scenario - What is a elegant solution?
|
| |
A few different options come to mind (for a non-Spring application):
1. The factory reads the cla...
|
|
Re: Multi tier design recommendations
|
| |
A couple of reasons to use session beans:
1. You need to support remote clients that begin a transa...
|
|
Re: A Scenario - What is a elegant solution?
|
| |
hmm...
Why do you think you could not subclass Order?
Presumably there would be a factory respo...
|
|
Re: services : pb of analysis or design
|
| |
Hmmm... depends on what you mean by analysis and design :-).
One definition:
* analysis = und...
|
|
Re: Update detach object using POJO facade
|
| |
You could just use:
PlaceOrderFacade.update(PendingOrder pendingOrder)
The facade's client ju...
|
|
Re: dividing responsabitlies in a model?
|
| |
My guess is that the behavior should go in the classes themselves.
class Policy {
List<Plan> p...
|
|
Re: JMock
|
| |
Many of the tests in my book use JMock and it definitely can be useful for TDD.
However, if you a...
|
|
Re: how to access repository from domain object? again
|
| |
Sorry for not replying sooner - December was a hectic month: holidays and JavaPolis.
You raise a ...
|
|
Re: Build error with maven
|
| |
Sorry for the delay in replying.
Were you able to solve the problem?
Which version of the source c...
|