
pro.taskana.rest.controllers.ViewController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of taskana-rest-spring-example-common Show documentation
Show all versions of taskana-rest-spring-example-common Show documentation
groups the minimum required configuration for a taskana REST APP
The newest version!
package pro.taskana.rest.controllers;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
/** The view controller. */
@Controller
public class ViewController {
@GetMapping(path = {"", "taskana/**"})
public String index() {
return "forward:/index.html";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy