Results 1 to 2 of 2
- 03-13-2012, 08:01 PM #1
Member
- Join Date
- Mar 2012
- Posts
- 1
- Rep Power
- 0
New to Java looking for a strategic approach..for a prototype
I have been tasked with implementing a Java prototype solution for the following problem.
1) Create a web application that creates updates and edits data in an open source database on a remote hosted server.
2) The same functionality needs to be built on a java application that can run on a desktop machine that has intermittent or limited internet connectivity.
3) When connectivity is available the data should be synced between the two databases.
So what web application framework, database should be used for a Java solution, could that same code be reused on a offline local data store how would it be sync. Would I need to build a Java desktop solution and a totally separate web solution ..seems alot of duplication
Software upgrades would need to be performed remotely when internet connection was Established.
I am looking for a RAD development tool too that I can produce a prototype of a single screen and prove a sync can be done.
any help would be most useful as I am new to Java an all its implementation
- 03-14-2012, 09:43 AM #2
Moderator
- Join Date
- Apr 2009
- Posts
- 10,438
- Rep Power
- 16
Re: New to Java looking for a strategic approach..for a prototype
Think layers.
The front end of each will be different, one being a servlet/JSP/whatever framework, the other being Swing.
The middle layer will be the same, consisting of whatever business logic there is, interacting with the front end and backend.
The backend (database layer) will have the same interface, but will be slightly different, with the web app interacting with the hosted server directly, and the desktop app interacting with both that and the local db depending. Including the synching code. You'll probably want to expose an 'offline' flag so the desktop app can display that info to the user, but that depends on your requirements.Please do not ask for code as refusal often offends.
Similar Threads
-
Best approach for learning Java for web development as a programmer
By faze in forum New To JavaReplies: 1Last Post: 07-28-2011, 07:43 AM -
Is this a good approach for a custom object-relational mapping in Java?
By visual-kinetic in forum JDBCReplies: 5Last Post: 12-15-2010, 02:22 AM -
Strategic & Effective Internet Marketing Solutions - PPC, Email Marketing
By outsourceendrew in forum Reviews / AdvertisingReplies: 0Last Post: 07-13-2010, 07:04 AM -
Whether to make Bean Singleton or non Singleton (prototype)
By Java Tip in forum Java TipReplies: 0Last Post: 03-29-2008, 12:41 PM -
Whether to make Bean Singleton or non Singleton (prototype)
By JavaBean in forum Java TipReplies: 0Last Post: 09-26-2007, 08:32 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks