CdmLibraryDev » History » Version 46
Andreas Kohlbecker, 01/17/2017 03:37 PM
1 | 46 | Andreas Kohlbecker | {{>toc}} |
---|---|---|---|
2 | |||
3 | 1 | Niels Hoffmann | # CDM Library Development Resources |
4 | |||
5 | 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://cybertaxonomy.eu/cdmlib |
||
6 | 2 | Niels Hoffmann | |
7 | 10 | Andreas Kohlbecker | ---- |
8 | 1 | Niels Hoffmann | |
9 | 45 | Andreas Kohlbecker | ## Releases |
10 | 37 | Andreas Müller | |
11 | 33 | Andreas Kohlbecker | * [[CdmPlatformReleaseSteps|How To do a Cdm Platform Release]] |
12 | 45 | Andreas Kohlbecker | * [[CdmReleasePolicy|CDM Release, Versioning & Branch Policy]] |
13 | 38 | Cherian Mathew | |
14 | 45 | Andreas Kohlbecker | ## CDM Internals |
15 | 8 | Niels Hoffmann | |
16 | 1 | Niels Hoffmann | * [[CdmTransactions|Transactions in the CDM library]] |
17 | 23 | Andreas Kohlbecker | * [[CdmEntityInitalization]] |
18 | 1 | Niels Hoffmann | * [[CdmLibraryCaveats]] |
19 | 23 | Andreas Kohlbecker | * [[CdmClassificationRankSpecificRootnodes|Rank Specific Rootnodes of Classifications]] |
20 | 1 | Niels Hoffmann | * [[TermVocabularyHowTo|HowTo Create a Term Vocabulary]] |
21 | 41 | Andreas Kohlbecker | * [[MavenCdmUpdate]] |
22 | 24 | Andreas Kohlbecker | |
23 | 45 | Andreas Kohlbecker | ### Authentication, authorization, access control |
24 | 23 | Andreas Kohlbecker | |
25 | 45 | Andreas Kohlbecker | * [[CdmAuthorisationAndAccessControl|Cdm authorisation and access control]] - security permissions etc |
26 | * [[HibernateSpringAndRowlevelSecurity]] |
||
27 | 1 | Niels Hoffmann | |
28 | 45 | Andreas Kohlbecker | ### Searching |
29 | 1 | Niels Hoffmann | |
30 | * [[CdmLibraryFreetextSearch]] |
||
31 | |||
32 | 45 | Andreas Kohlbecker | ### cdmlib-remote - RESTful services |
33 | 1 | Niels Hoffmann | |
34 | * [[CdmServerReadWriteRest]] |
||
35 | * [REST API reference, Object Boundaries, Localization, Content Negotiation, Character Encoding](http://cybertaxonomy.eu/cdmlib/rest-api.html) |
||
36 | * [[CdmEntityInitalization|Bean/Entity Initialization]] |
||
37 | * [[CdmRestServicesEntitySerialization|On the serialization of CDM entities in the cdmlib-remote RESTful services]] |
||
38 | * [[CdmRdfWebServices|On RDF responses for cdmlib-remote RESTful services]] |
||
39 | |||
40 | ### cdmlib-remote-webapp |
||
41 | |||
42 | * [[cdmlib-remote-webappConfigurationAndBootstrapping|cdmlib-remote-webapp configuration and bootstrapping]] |
||
43 | |||
44 | 46 | Andreas Kohlbecker | ## cdm-vaadin - CDM Vaadin UI |
45 | |||
46 | * [[VaadinNotes]] |
||
47 | * [[VaadinEditorDevelopersGuide|Vaadin Developer Guide]] |
||
48 | |||
49 | 45 | Andreas Kohlbecker | ## Conventions & Policies |
50 | |||
51 | * [[CdmLibraryConventions]] |
||
52 | * [[EclipsePreferencesforTeams]] |
||
53 | |||
54 | ## Tests (writing / running) |
||
55 | |||
56 | * [[IntegrationTests|IntegrationTests - Testing java code using Maven and Unitils]] |
||
57 | * [[IntegrationTestWriting|IntegrationTests - how to write tests and how to generate test data for them]] |
||
58 | |||
59 | ## Debugging |
||
60 | |||
61 | * [[DebugC3P0Connections|How to debug leaking C3P0 connections]] |
||
62 | |||
63 | 42 | Andreas Kohlbecker | ## Discussion (historic) |
64 | 35 | Cherian Mathew | |
65 | 44 | Andreas Kohlbecker | * [[CdmBrainstorm]] - problems & ideas for the future of the CDM |
66 | 45 | Andreas Kohlbecker | |
67 | 4 | Niels Hoffmann | |
68 | 6 | Niels Hoffmann | ---- |
69 | 3 | Niels Hoffmann | |
70 | ## External Resources / Links |
||
71 | 2 | Niels Hoffmann | |
72 | |||
73 | ### Hibernate |
||
74 | |||
75 | * Hibernate works with most current RDBMS. See [supported databases](http://www.hibernate.org/80.html) |
||
76 | * [On CascadeType.DELETE and CascadeType=DELETE_ORPHAN](http://www.mkyong.com/hibernate/hibernate-cascade-example-save-update-delete-and-delete-orphan/) |
||
77 | 12 | Andreas Müller | |
78 | 2 | Niels Hoffmann | |
79 | ### Spring 2.0 Framework |
||
80 | |||
81 | We use the Spring 2.0 framework to develop the library and keep the coupling of components low. |
||
82 | |||
83 | * [Spring2.0 Documentation](http://static.springframework.org/spring/docs/2.0.x/reference/index.html) |
||
84 | * [Introduction to the Spring Framework](http://www.theserverside.com/tt/articles/content/SpringFramework/article.html) |
||
85 | * [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) |
||
86 | 7 | Niels Hoffmann | |
87 | 2 | Niels Hoffmann | |
88 | ### Domain Models |
||
89 | |||
90 | * [Domain Models and Validation. An Architectural Discussion](http://forum.springframework.org/showthread.php?t=18699) |
||
91 | * [Avoiding anemic domain models with Hibernate](http://www.theserverside.com/patterns/thread.tss?thread_id=31010) |
||
92 | * [Business Object Pattern](http://www.corej2eepatterns.com/Patterns2ndEd/BusinessObject.htm) |
||
93 | 44 | Andreas Kohlbecker | * [AnemicDomainModel Anti Pattern](http://www.martinfowler.com/bliki/AnemicDomainModel.html) |
94 | 2 | Niels Hoffmann | |
95 | |||
96 | #### Property Change |
||
97 | |||
98 | * http://www.onjava.com/pub/a/onjava/2004/06/02/desktop.html |
||
99 | * http://www.javalobby.org/java/forums/t19476.html |
||
100 | |||
101 | |||
102 | ### Useful Patterns |
||
103 | |||
104 | * [ApplicationService Pattern](http://www.corej2eepatterns.com/Patterns2ndEd/ApplicationService.htm) |
||
105 | |||
106 | |||
107 | ### Aspect Oriented Programming |
||
108 | |||
109 | We use AspectJ to implement the change property crosscutting concern: |
||
110 | |||
111 | * AspectJ |
||
112 | * http://today.java.net/pub/a/today/2005/12/15/writing-mixins-with-aop.html |
||
113 | * JBoss AOP |
||
114 | * http://www.damnhandy.com/javabean-aspect/ |
||
115 | * Spring AOP |
||
116 | * http://forum.springframework.org/archive/index.php/t-13293.html |
||
117 | * http://forum.springframework.com/viewtopic.php?t=301 |