I am planning to build a simple document management system. Preferably built around the java platform. Are there are best practices around this? The requirements are :
- Ability to upload documents
- Ability to Tag documents
- Version the documents
- Comment on documents
There are a couple of options that I am currently considering. The first option would be a simple API on top of SVN or CVS and use a DB backend to track tags, uploader, comments etc
Another option is to use the filesystem. Version the documents as copies in a versions folder and work with filenames.
Or, if there is an Open non GPL'ed doc management system, we could customize it to our needs and package it in our application. Does anybody have any experience building something like this?