All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springdoc.sample2.HomeController Maven / Gradle / Ivy

There is a newer version: 3.1.2
Show newest version
package org.springdoc.sample2;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;

/**
 * Home redirection to swagger api documentation 
 */
@Controller
public class HomeController {

	@GetMapping(value = "/")
    public String index() {
        return "redirect:swagger-ui.html";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy