CdmLibraryDev » History » Version 6
Niels Hoffmann, 11/15/2010 03:53 PM
1 | 1 | Niels Hoffmann | |
---|---|---|---|
2 | |||
3 | |||
4 | |||
5 | # CDM Library Development Resources |
||
6 | |||
7 | |||
8 | This page holds information and resources for developing the CDM Library. For a general introcution to the CDM Library and basic setup instructions please see: http://wp5.e-taxonomy.eu/cdmlib |
||
9 | |||
10 | |||
11 | {{>toc}} |
||
12 | 2 | Niels Hoffmann | |
13 | |||
14 | |||
15 | |||
16 | |||
17 | ---- |
||
18 | |||
19 | |||
20 | |||
21 | 3 | Niels Hoffmann | ## Development Hints |
22 | |||
23 | |||
24 | * [[CdmLibraryCaveats]] |
||
25 | |||
26 | 5 | Niels Hoffmann | * [[TermVocabularyHowTo|HowTo Create a Term Vocabulary]] |
27 | 4 | Niels Hoffmann | |
28 | |||
29 | |||
30 | 6 | Niels Hoffmann | ---- |
31 | |||
32 | 3 | Niels Hoffmann | |
33 | |||
34 | 2 | Niels Hoffmann | ## External Resources / Links |
35 | |||
36 | |||
37 | |||
38 | ### Hibernate |
||
39 | |||
40 | * Hibernate works with most current RDBMS. See [supported databases](http://www.hibernate.org/80.html) |
||
41 | |||
42 | |||
43 | |||
44 | ### Spring 2.0 Framework |
||
45 | |||
46 | We use the Spring 2.0 framework to develop the library and keep the coupling of components low. |
||
47 | |||
48 | * [Spring2.0 Documentation](http://static.springframework.org/spring/docs/2.0.x/reference/index.html) |
||
49 | |||
50 | * [Introduction to the Spring Framework](http://www.theserverside.com/tt/articles/content/SpringFramework/article.html) |
||
51 | |||
52 | * [Die Rückkehr der POJOs. Das Spring-Framework: leichtgewichtiges Komponentenmodell als Alternative zu EJB](http://javamagazin.de/itr/online_artikel/psecom,id,608,nodeid,11.html) |
||
53 | |||
54 | |||
55 | |||
56 | ### Domain Models |
||
57 | |||
58 | * [Domain Models and Validation. An Architectural Discussion](http://forum.springframework.org/showthread.php?t=18699) |
||
59 | |||
60 | * [Avoiding anemic domain models with Hibernate](http://www.theserverside.com/patterns/thread.tss?thread_id=31010) |
||
61 | |||
62 | * [Business Object Pattern](http://www.corej2eepatterns.com/Patterns2ndEd/BusinessObject.htm) |
||
63 | |||
64 | * [AnemicDomainModel Anti Pattern](http://www.martinfowler.com/bliki/AnemicDomainModel.html) |
||
65 | |||
66 | |||
67 | |||
68 | #### Property Change |
||
69 | |||
70 | * http://www.onjava.com/pub/a/onjava/2004/06/02/desktop.html |
||
71 | |||
72 | * http://www.javalobby.org/java/forums/t19476.html |
||
73 | |||
74 | |||
75 | |||
76 | ### Useful Patterns |
||
77 | |||
78 | * [ApplicationService Pattern](http://www.corej2eepatterns.com/Patterns2ndEd/ApplicationService.htm) |
||
79 | |||
80 | |||
81 | |||
82 | |||
83 | ### Aspect Oriented Programming |
||
84 | |||
85 | We use AspectJ to implement the change property crosscutting concern: |
||
86 | |||
87 | * AspectJ |
||
88 | |||
89 | * http://today.java.net/pub/a/today/2005/12/15/writing-mixins-with-aop.html |
||
90 | |||
91 | * JBoss AOP |
||
92 | |||
93 | * http://www.damnhandy.com/javabean-aspect/ |
||
94 | |||
95 | * Spring AOP |
||
96 | |||
97 | * http://forum.springframework.org/archive/index.php/t-13293.html |
||
98 | |||
99 | * http://forum.springframework.com/viewtopic.php?t=301 |