Back Forum Reply New

And now to something completely different

Me again,  

I'd like to find out if it is rather complex to integrate and use DWR (Ajax Framework) with Spring to do for example the following thing:

My job is to manage BibTex-Entries. Each of those entries may have one or more authors, which means that an editing form will have to provide add- and remove functions for authors. In addition, Hibernate is used for data persistence, therefore an 1:N exists for the BibTex- and the author entries, e.g.:

public class BibTexEntry{
...
private Listlt;Authorgt; author;
...

Well, my intention is to click on the add-button related to authors inside the JSP and an add-method is called, activating the back-end controller (?). Finally, the JSP is refreshed.

From my point of view, it's a rather difficult task.

Michael
¥
Back Forum Reply New