Reputation: 12123
Intro: I have the files grid.jsp and invoices.jsp, among others. My Spring-MVC view resolver resolves *.htm to .jsp, so when you go to /grid.htm you get the grid.jsp view, and when you go to /invoices.htm you get the /invoices.jsp view.
When I inspect the XML document (by visiting the link) it looks sound. But for some reason my jqGrid is not recognizing any of the data.
To make a long question short, do you think the "hoops" I have to jump through in resolving views through controllers is causing the problem? When jqGrid sends a GET request on /invoices.htm, and I resolve the view to index.jsp, is it actually downloading the XML file? In theory, everything that can be done in PHP should be capable of being ported to JSP, but is this actually the case here?
This question is hard to word, but I hope it's understandable. Thanks.
Upvotes: 1
Views: 866
Reputation: 222007
I don't use Spring-MVC myself, but I know about the tutorial and the previous one. Probably you will find there some information which will be helpful for you.
Upvotes: 1