groovy - how to send data from one grails application to other grails application -


i have created 2 application in grails both interconnected, need pass data 1 application other, how can pass using redirect url

redirect(url:'url path') 

well can pass data controller action pretty use of params

specify input parameters below

redirect(uri: "url path", params: [content : "your_data"]) 

you can pass more 1 parameter add map params below

redirect(uri: "url path", params: [content : "your_data", other_content: "some_other_data"]) 

please modify key value per need.


Comments

Popular posts from this blog

unity3d - Rotate an object to face an opposite direction -

angular - Is it possible to get native element for formControl? -

javascript - Why jQuery Select box change event is now working? -