MCPcopy Create free account
hub / github.com/castello/spring_basic / test1

Method test1

ch2/RequestMappingTest.java:9–12  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

7public 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(){

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected