Using JApplet in the frontend
I am a newbie to J2EE and please excuse me if this idea sounds infeasible or out of this world.
I have to develop a project very fast and I am very much comfortable with Java Swing (not so much with HTMLs and JSPs) . So I want approach my project in this way -
1. I want to develop the entire software as a desktop application but running in an web-browser (through JApplet). This is something like Google Spreadsheets and so many online softwares.
2. I want all the components of the interface in the single JApplet which will be loaded initially by the browser.
3. All the interactions with the database and the web-server will take place thorugh the JApplet.
Is it feasible? If so, please provide references or examples.

