Skip to content

Instantly share code, notes, and snippets.

@krams915
Created January 20, 2012 07:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save krams915/1645995 to your computer and use it in GitHub Desktop.
Save krams915/1645995 to your computer and use it in GitHub Desktop.
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