I have a question of how i can reference Aggregate Roots from other objects when using a domain driven design. Here is my problem
I do not want to directly reference other Aggregate Roots from my...
Type: Posts; User: wdorninger; Keyword(s):
I have a question of how i can reference Aggregate Roots from other objects when using a domain driven design. Here is my problem
I do not want to directly reference other Aggregate Roots from my...
I prefere annotations as it is clearer and you have the information right there where the code is as well - so i feel its easier to maintain. However annotations have the drawback that you can't...
Thats a quite old thread you have digged out there - I personally find "Domain Driven Design" (E. Evans) very good.
Hi all,
I'm searching for a way to externalize queries and already found a few solutions however I'm not really happy with the solutions. I'm using hibernate and hibernate annotations. Currently i...
Hi dmen,
I'm not sure if i understand your question correct but I try to give you my opinion and how I used repositories in the past.
First a repsitory returns only the object you are querying...
Hi all,
I had a look at the Entity Aspect generated by Roo. It looks good to me and I believe it is very useful for quickly together applications. However I have one suggestion for the Entity...
Thanks for the reply, Yes I can confirm that
- I'm using Version: 2.2.0.200910210131-RELEASE
- also I did reindex.
- And JDT weaving is currently enabled
Well I have to admit that I have...
Hi all,
I'm trying to use roo with sts however it appears as that jdt is not working. I can't see the entity methods that are generated in ..._Roo_Entity.aj when using code completion (Ctrl-Space)...
Is it possible I'm missing a dependency? I found a similar issue in the ActiveMQ project
https://brutus.apache.org/activemq/browse/CAMEL-1348
But as far as i can see the deps are ok
...
I tried it with M4 but its also not working. However what I found out is that it is working when I run my project from the command line (maven test). Using eclipse it does not work. (even if i use...
I read that Spring Batch 2.0.2 "should" work with Spring 3.0.x however if I start using those two I get an exception immediately when my application initializes ->...
Maybe this settings.xml works for me:
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"...
This worked for me:
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 ...
Hi Rich,
It is very likely that you are using a mixture of Spring 2.x and Spring 3.x classes (check your classpath). I came across the same error when using Spring Batch 2.x and Spring 3.0.0M2/3....
What you could do is write your own FileReader (and use FlatFileReader as a template) - the only thing you would need to change is readLine() to cater for the the footer row to be omitted - the...
Hi,
I have a problem passing data from a FileReader to a RecordMapper. Here is the description of my problem:
I have a file which contains some comments at the beginning followed by header...