Skip to Main Content
Spring Boot 2.0 Projects
book

Spring Boot 2.0 Projects

by Mohamed Shazin Sadakath
July 2018
Intermediate to advanced content levelIntermediate to advanced
336 pages
9h 23m
English
Packt Publishing
Content preview from Spring Boot 2.0 Projects

Implementation of controllers

The following code is the TaxiController, which caters to the registering, searching, status updating, and so on, of Taxis; it is available in spring-boot-2-taxi-service:

@RequestMapping("/taxis")@RestControllerpublic class TaxiController {    private final TaxiService taxiService;    public TaxiController(TaxiService taxiService) {        this.taxiService = taxiService;    }    @GetMapping    public Flux<TaxiAvailableResponseDTO>      getAvailableTaxis(@RequestParam("type") TaxiType taxiType,      @RequestParam("latitude") Double latitude, @RequestParam("longitude")      Double longitude, @RequestParam(value = "radius", defaultValue = "1")       Double radius) {        Flux<GeoResult<RedisGeoCommands.GeoLocation<String>>> availableTaxisFlux         = taxiService ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Mastering Spring Boot 2.0

Mastering Spring Boot 2.0

Dinesh Rajput
Mockito for Spring

Mockito for Spring

Sujoy Acharya

Publisher Resources

ISBN: 9781789136159Supplemental Content