I installed project zero and created project from repository with employees. It works fine with this part:
URL employeeURL = new URL(getAbsoluteUri("/resources/employees"));
employees = zero.json.Json.decode(employeeURL);
but when I change it to
URL temasUrl = new URL(getAbsolureUri("/resources/teams"));
URL teams = zero.json.Json.decode(teamsURL);
I get an error although the resource is accessible through browsers
this is the error
groovy.lang.MissingMethodException:No signature of method: charts.getAbsolureUri() is applicable for argument types: (java.lang.String) values: [/resources/teams]
getAbsolureUri()in the second snippet looks like it should begetAbsoluteUri()based on the first snippet.