Skip to content

Instantly share code, notes, and snippets.

@maggandalf
Forked from anonymous/Controller.java
Created June 20, 2011 09:02
Show Gist options
  • Save maggandalf/1035337 to your computer and use it in GitHub Desktop.
Save maggandalf/1035337 to your computer and use it in GitHub Desktop.
Definition of MVC Controllers
@Configuration
public class ControllerConfig {
@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