Skip to content

Instantly share code, notes, and snippets.

Created June 18, 2011 16:50
Show Gist options
  • Save anonymous/1033266 to your computer and use it in GitHub Desktop.
Save anonymous/1033266 to your computer and use it in GitHub Desktop.
Definition of MVC Controllers
@Configuration
public class Controller {
@Bean
public HomeController homeController() {
return new HomeController();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment