Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find good ajax support in Java/Python?

I want a framework (or anything) that helps me make rich client guis. I know my server-side, but I don't like programming in ajax, javascript, css etc.

Something that wraps the ajax code in some objects/methods with clean syntax, would do the trick. I want to write code in java instead of defining css and html tags.

Does Java Spring, JSF, Django support this ?

Languages: Java, Python

Thank you

like image 493
Horatiu Jeflea Avatar asked Dec 03 '25 17:12

Horatiu Jeflea


1 Answers

Look into Google Web Toolkit (aka GWT). It's a Java framework that "is a development toolkit for building and optimizing complex browser-based applications. GWT is used by many products at Google, including Google Wave and Google AdWords."

I think GWT aims to do exactly what you're looking for, though I have no experience with it personally.

like image 72
Will McCutchen Avatar answered Dec 06 '25 06:12

Will McCutchen