Class PropertiesController


  • @RestController
    @RequestMapping("/rest/properties")
    public class PropertiesController
    extends Object
    • Constructor Detail

      • PropertiesController

        public PropertiesController()
    • Method Detail

      • getProperties

        @GetMapping(produces="application/json")
        public Map<String,​String> getProperties()
      • getProperty

        @GetMapping(value="/{property}",
                    produces={"text/plain","application/json"})
        public String getProperty​(@PathVariable("property")
                                  String property)