-1
votes
0answers
10 views

Grails & JSON task [closed]

I have the following task, I have two questions about it I'm done with number 1, and 2. I can't understand 3.A can someone give me an example to understand it more ? how can i call this method from ...
1
vote
3answers
1k views

Grails send request as JSON and parse it in controller

I want to send a request as JSON and in my controller I want to parse this JSON and get the parameters I want. for example this is the request: {"param1":"val1"} I want to parse this request and ...
0
votes
1answer
380 views

Unable to use “as JSON” after upgrading to grails 2.1.1 from grails 1.3.4

I'm in the process of upgrading a grails plugin from 1.3.4 to grails 2.1.1. After upgrading I now have an integration test that fails that was not failing before. It fails on using the "as JSON" ...
1
vote
0answers
172 views

Grails - bind JsonArray to Collection attribute

I have a REST controller that expectes a complex object in JSON format. Let's say, A.class has an association with a collection of B.class. class A { private List<B> values; ... } ...
6
votes
3answers
1k views

How do I unit test a Grails service that uses a converter?

I have a Grails service that sends out e-mails using a 3rd-party service by doing a HTTP call: class EmailService { def sendEmail(values) { def valueJson = values as JSON ... // ...