sakthivikram/geo-location
0
1package com.georeport.controller;2 3import org.springframework.stereotype.Controller;4import org.springframework.web.bind.annotation.GetMapping;5 6@Controller7public class HomeController {8 9 /**10 * Redirect root path to the index landing page11 */12 @GetMapping("/")13 public String home() {14 return "redirect:/index.html";15 }16}17 