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

org.molgenis.ui.MolgenisRootController Maven / Gradle / Ivy

There is a newer version: 8.4.5
Show newest version
package org.molgenis.ui;

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

/**
 * Redirects '/' to the active plugin in the main menu
 */
@Controller
@RequestMapping("/")
public class MolgenisRootController
{
	@RequestMapping(method =
	{ RequestMethod.GET, RequestMethod.POST })
	public String index()
	{
		return "forward:" + MolgenisMenuController.URI;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy