Geocoding

How do I make it work?

  1. Set up your API key on the geolocation.api property from application.properties
  2. You can start the project using mvn spring-boot:run

Available methods

    @PostMapping("/store/address")
    public void storeAddress(@RequestBody String address)

    @PostMapping("/store/addresses")
    public void storeAddresses(@RequestBody byte[] addressesFileContent)

    @GetMapping("/get/addresses/all")
    public Collection<Address> getAllAddresses()