I want to develop a SaaS chat that users will be able to embed on their website and also there will be a desktop chat client. Something similar to Live Chat. The problem is that I've never developed server or database programs. Also I'm new to Java but have some experience in desktop C# programming (developed some gui apps). In fact, I'm a student and don't have that much experience.
I'm trying to design a good scalable architecture for our server but after a few days of googling and reading wikipedia I feel overwhelmed with such amount of information. Server needs to be simple since it does not contain any presentation code but it has to be very fast because I'm expecting high traffic if service becomes popular. For now I've choosed most of technologies I'll be using. Here's my version of server architecture:

Now the biggest question is how to design this big 'Jetty' piece that contains business logic. I've already learned that I need to use MVP pattern. But there's still some major problems:
- How to properly work with database? Make static
DatabaseManagerclass that can load and save objects to database? Or make special staticSaveToDbandLoadFromDbmethods on classes? I think there must be an already developed framework for such things (it must be very common task for servers) - How to design event system? How to correctly notify all clients in 'chat room' that they have new message? I can't trivially subscribe all clients to chat room's
NewMessageevent since most clients are in database, not in memory. - It will be great help if you post some simplified design of main classes:
Message,UserandChat room. Where message is sent from user to chat room and chat room is a collection of subscribed users. This will be kind of answer to previous two questions.
It will be very nice if you point me at appropriate technologies or design patterns.
send me teh codezwith pictures ... – Jarrod Roberson Jun 27 '11 at 18:43Java == lots of material to read and comprehend, unfortuntately that is the case with all the frameworks for Java, there is no quick and easy solution, and you won't get one here either, this is the world of Java, get used to it. :-) – Jarrod Roberson Jun 27 '11 at 19:11