I am embedding Ember App inside JSP app.
The below url lands me to the jsp page where ember app will get load.
http://localhost:8080/AdminDetails.do?forwardTo=example
My Router would be
App.Router.map(function(){
this.resource('abc');
});
Question:
I want the URL mentioned above as rootURL.
i.e,
http://localhost:8080/AdminDetails.do?forwardTo=example
loads application template
http://localhost:8080/AdminDetails.do?forwardTo=example/abc
loads abc template
Is it possible?