Hi everyone,
For those who have built a web application using the standard MVC pattern I'm sure you have found it can be quite a tedious and cumbersome solution. The constant need to jump in and out of html/java and the messy process of moving data between the model, the controller and the view is not a pretty one. I've tried to come up with a better solution for implementing MVC. Objective html is a toolkit that aims at making html form development similar to the code you write for something like Java-Swing. Instead of having 3 components for each form, i.e. the jsp page, the javabean and the controller, I've pull all these components back together so you have the model, controller and view in the one class file. If you check out my example its a much more intuitive and easy to follow solution then having the standard 3 parts solution. Some advantages of Objective HTML are: - Form data is much easily handled and much more intuitive - No need to have 3 pieces of code like MVC (jsp, bean, controller), instead most of your code lies in one class - Less knowledge of html required, most of the messy html code is abstracted in the Java objects - Much more Object-Orientated for the discipline freaks - Fully open source I hope some people can try out this toolkitout and let me know if it is useful to them and what I can do to improve it. Check out the website at http://objectivehtml.sourceforge.net Cheers, Keith -- To unsubscribe: <mailto:[EMAIL PROTECTED]> For additional commands: <mailto:[EMAIL PROTECTED]> Troubles with the list: <mailto:[EMAIL PROTECTED]>
