Sandro,
Thanks for your contribution, here is my first comments after a small review :
* Why set the PersistenceManager in the test area ? it is not our generic converter class ? It is not better to rename it to xxxxConverter ?
If I understand, the target node type match to the class name and each class attributes have to match to a node property. I would like to suggest to used a mapping config file (like OJB or Hibernate) which will can gives more flexibility for the mapping (like using proxies, ...). What do you think about that ?
* What is the goal of the BeanConverter ? It seems to be used only for the NodeType ? is it correct ?
* Please use maven and not ant, it is used by all projects in the asf portal area. If you install maven, JAAS config is setup for you when running the unit test. See the file maven.xml. By this way, you can drop your hard coding on your own config folders.
* Can you add the ASF license in all files and more javadoc ?
I prefer to wait before check int thoses files when the asf licence will be added and when we will have a more advance situation. Anyway, it is a good starting point.
Oliver, are you still interesting to work on this jcr mapping. If yes, I can help Sandro in order to work faster and to commit something ASAP.
Regards, Christophe
Here is the license :
/* * Copyright 2000-2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */
[EMAIL PROTECTED] wrote:
Hello,
to Christophe and Oliver I sent (hopefully all) the files for a proof of concept of three usecases for the JCR Mapping(I could not sent it to the mailing list because it does not allow attachments): 1. Registering custom nodetypes according to a Java Bean model. 2. Persist a Java Bean. 3. Loading a Java Bean from the repository.
==>1. Creating the custom nodetypes is realized with JAXB. The BeanConverter class maps the Java structure to the nodetype structure and marshalls the custom_nodetypes.xml to the configured nodetype folder. I attached the /lib folder with the jaxb libraries, a XML schema and the command line call (in the generateNodeTypeDTD.bat file) if somebody want to generate a new custom_nodetypes.xml file. I did not check the schema against the spec yet, because it will change anyway. Once the definition of the custom_nodetypes.xml file is stable, I would like to create an Ant target and a seperate library for generating custom nodetypes out of Java Beans.
==>2. Persisting simply works like that: PersistenceManager pm = new PersistenceManager(session); String relPath = pm.insert(folder);
==>3. Loading can be implemented this way: Folder loadedFolder = (Folder) pm.getObject(relPath);
All information for reading and writing a bean can be gained by the class itself except the path where the object is stored in the repository. This path acts like a unambiguous database id.
++ limitations ++ o no complex properties can be saved (Folder.getDocument()) o collections are not yet supported o deletion is not yet supported o only the basic JCR Types (String, boolean,...) and java.util.Date are supported o the bean converter is not yet adapted to Graffito converter handling o mixin's/Interfaces are not yet supported
++ next steps ++ o much more test cases need to be added and I'm sure according bug's need to be fixed ;-) o also delete the data created in the test cases o pm.update and pm.delete() need to be added o more atomic types (like Character,...) need to be added o support for complex types o support for collections o support for interfaces o make the namespace "graffito" configurable o support for JCR features like searching, versioning,... o creating an Ant target for registering Java classes as nodetypes o refactor some responsibilties and names of some classes o ...
++ configuration ++ I don't think it is ready for check in because the configuration is not very clean at the moment. I needed to delete the repository data (repotest/versions and repotest/workspaces/default) in order to get the tests to run. I've not very much experience with maven. Your information for this issue are very much appreciated.
Please tell me your opinions about all this. Thank you very much.
Regards,
Sandro
Zitat von LOMBART Christophe <[EMAIL PROTECTED]>:
No problem. I'm working on other area.jcr-mapping/src/test/org/apache/portals/graffito/jcr/session/impl/JcrSessionTest.java
Christophe
-----Original Message----- From: Sandro B�hme [mailto:[EMAIL PROTECTED] Sent: Tue 4/5/2005 9:17 AM To: [EMAIL PROTECTED] Cc: Subject: Re: JCR mapping - step 2 Hallo again,
getting Graffito to run needed a little bit more time than I expected. What I have at the moment is not yet ready. But I hope I will have something until the end of the week.
regards,
Sandro
Sandro B�hme wrote:
Hello,
Christophe Lombart wrote:
Hi all,
I commited a small prototype (basic foundation to work together) for the JCR mapping framework. See in the jcr-mapping subproject.
Currently, it works like this :
* There is a converter class/cms object registered in a config file (see a example in jcr-mapping\src\conf\convertertest\converters.xml). This config file is very simple for this prototype.
* A simple converter class can be found in org.apache.portals.graffito.jcr.testconverter.
* It is possible to use custom JCR nodetypes or unstructured nodes. This prototype is based on a node type called "graffito:folder"
* Check the
converterClass="org.apache.portals.graffito.jcr.converter.GenericConverter"<cid:[EMAIL PROTECTED]>to get more info
What about the next step ? I think the following steps should be interesting :
* Add search capabilities
* More unit tests
* Build a more generic converter class. I'm thinking about a more advanced config file. Something like :
<converters> <converter class="org.mycmsframework.Folder"
nodetype="graffito:folder" >
<attributes>
<attribute name="description" />
<propertyNode name="graffito:description" />
</attribute>
<attributes>
....
<!-- add associations here --> <converter> </converters>
* Any volonteer to continue this work ? Again, the code is still a
yes, I would like to create a bean converter class at the weekend.
Regards,
Sandro
*prototype* and you are welcome to send us patches, comments, new enhancements, ... I'm going to create a new component in JIRA.
Thanks, Christophe
