Reputation: 199
I wanted some tips regarding the following problem, from the Java experts in this forum:
I think it is possible with the MVC Spring framework, but don't know how exactly.
Thanks.
Shaun
Upvotes: 1
Views: 211
Reputation: 2425
Is is possible to have the view completely developed and hosted at the client side, with the controller and model at the server?
What do you mean by this? Well, you may build HTML on client with Java Script by sending ajax requests for data to controller, but it's not the way Spring MVC designed for. For that you probably will need something like DWR
Upvotes: 2