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

au.org.consumerdatastandards.holder.configuration.HomeController Maven / Gradle / Ivy

The newest version!
package au.org.consumerdatastandards.holder.configuration;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;

@Controller
public class HomeController {

    @RequestMapping(path = "/", method = RequestMethod.GET)
    public String index() {
        return "redirect:swagger-ui.html";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy