14 lines
300 B
Java
14 lines
300 B
Java
package com.eactive.testmaster.home;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
@Controller
|
|
public class HomeController {
|
|
|
|
@GetMapping("/")
|
|
public String home() {
|
|
return "redirect:/mgmt/routes/list_view.do";
|
|
}
|
|
}
|