Skip to content

Instantly share code, notes, and snippets.

@krams915
Created January 20, 2012 07:28
Embed
What would you like to do?
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