DWR – Direct Web Remoting

Posted in Java Development by admin - Nov 18 2009

DWR (Direct Web Remoting) is a java library set that allows easy server client communication. It is an open source licensed under Apache Software. The latest version released is DWR 2.0.DWR works simply by evoking Java function on the server side by the JavaScript on the client side as in Ajax and JavaScript from client […]

Model-View-Controller Architecture

Posted in Java Development by admin - Nov 18 2009

Model-View-Controller (MVC) Architecture is meant for sorting out the application components into three different categories named Model, View, and Controller. Each component made by the MVC Architecture have a unique set of rules to follow and there exists no relation between the components i.e., the changes in one component will have no impact on the […]