We have a working ordering system written completely in PHP using the Zend Framework. The system was made as a web application to be used easily across different machines over the web.
We have decided to change the system so that the client side will be a Java desktop application which will communicate with PHP web services on a server.
We are not building a JSP application, it's entirely a desktop application that's going to use sockets to talk to the server.
I need the framework to work in a manner similar to the MVC pattern where (for example) there is a class holding the events for the frame and another class holding the auto generated codes for the controls (something like the code behind in C#).
The framework should be easy to extend and to modify any part of it for complete control over the application.
I know there is many posts asking about the best Java framework, but I'm looking for something that will do most of its operations online.
I'm a PHP developer, and I have very little experience in Java so please bear that in mind when recommending a solution.