()
| 7 | public class RequestMappingTest { |
| 8 | // @RequestMapping({"/login/hello.do", "/login/hi.do"}) |
| 9 | @RequestMapping("/login/hello.do") // http://localhost/ch2/login/hello.do |
| 10 | public void test1(){ |
| 11 | System.out.println("urlpattern=/login/hello.do"); |
| 12 | } |
| 13 | |
| 14 | @RequestMapping("/login/*") // /login/hello, /login/hi |
| 15 | public void test2(){ |
nothing calls this directly
no outgoing calls
no test coverage detected