Spring Framework는 자바 리플렉션을 적극적으로 활용한다. 그래서인지 각 메소드별로 @RequestMapping 어노테이션을 이용해 Request의 진입 경로를 설정한다. 하지만 Play Framework는 conf/routes 파일에 Request Method와 Request를 처리할 함수를 설정해 둔다. 또, routes 파일은 template의 링크 주소나 Redirect 주소로도 사용된다. routes를 참조해 작성한다면 URL이 변경되었을 때 routes 수정만으로 사이트 전체에서 참조하고 있는 URL도 변경되는 장점이 있다. 1. 기본 GET / controllers.SimpleController.index # Map static resources from the /public fo..