![JAR search and dependency download from the Maven repository](/logo.png)
org.lockss.laaws.poller.config.HomeController Maven / Gradle / Ivy
package org.lockss.laaws.poller.config;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* Home redirection to swagger api documentation
*/
@Controller
public class HomeController {
@RequestMapping(value = "/")
public String index() {
System.out.println("swagger-ui.html");
return "redirect:swagger-ui.html";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy