Mainly brainstorming at this point and after some research, can't really find much about this topic.
I'm designing a Swing app that'll have a database back end for storage, and use the local file-system for of storage BLOBs too. This app isn't going to be CPU, storage, or GUI performance intensive, it's just a specialized database app for electronics project management.
My ideal goal would be to have one codebase that can execute within the JVM and GAE without any changes. I understand the App Engine Datastore is non-relational, so I know I can't use say SQLite for the desktop application. I'd have to go with something like MongoDB or Hypertable.
This program would run locally for 1 to many users and 1 to many users on GAE.
EDIT: Added CRUD requirements.
- Create or add new projects, parts, or BLOBs.
- Read, retrieve, search, or view existing projects, parts, schematics, or any type of BLOB.
- Update/clone or edit existing projects, parts, etc.
- Delete/deactivate existing projects, parts, etc.
Edit 2: In a nutshell, what I'm wondering is this even possible? If you've done a project that could be executed on the desktop or App Engine. I'd like to know what tools, frameworks, libraries, you used; even if you had to use a fully homegrown solution.
Thanks!