Skip to content

Instantly share code, notes, and snippets.

@jodygarnett
Last active August 29, 2015 14:07
Show Gist options
  • Save jodygarnett/d8095f7b844300de1618 to your computer and use it in GitHub Desktop.
Save jodygarnett/d8095f7b844300de1618 to your computer and use it in GitHub Desktop.
annotations
@Controller
@RequestMapping("/api/icons")
public class IconController extends AppController {
@Autowired
public IconController(GeoServer geoServer) {
super(geoServer);
}
@RequestMapping(value = "/{wsName}", method = RequestMethod.GET)
public @ResponseBody JSONArr list(@PathVariable String wsName)
throws IOException {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment