Skip to content

Instantly share code, notes, and snippets.

@krams915
Created January 26, 2012 06:07
package org.krams.controller;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping("/")
public class MediatorController {
@RequestMapping
public String getHomePage() {
return "redirect:/users";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment