Changes between Version 1 and Version 2 of spring-mvc-showcase2

차이점 주위로
다음 차이점은 무시하기:
작성자:
anonymous (IP: 221.150.127.103)
날짜/시간:
2013-01-18 PM 5:44:48 (12 년 전)
설명:

--

Legend:

변경되지 않음
추가됨
제거됨
변경됨
  • spring-mvc-showcase2

    v1 v2  
    22 * Simple 
    33  * http://localhost:9099/spring-mvc-showcase2/simple 
     4   * org.springframework.samples.mvc.simple.SimpleController 
     5{{{ 
     6        @RequestMapping("/simple") 
     7        public @ResponseBody String simple() { 
     8                return "Hello world!"; 
     9        } 
     10}}}