()
| 27 | } |
| 28 | |
| 29 | @RequestMapping("*.do") // /hello.do, /hi.do, /login/hi.do |
| 30 | public void test5(){ |
| 31 | System.out.println("urlpattern=*.do"); |
| 32 | } |
| 33 | |
| 34 | @RequestMapping("/*.???") // /hello.aaa, /abc.txt |
| 35 | public void test6(){ |
nothing calls this directly
no outgoing calls
no test coverage detected