次のように、アプリに2つのコントローラーがあります
@Controller("/test1")
public class Test1Controller {
@RequestMapping("/new")
public String newtest1() {
//....
}
}
@Controller("/test2")
public class Test2Controller {
@RequestMapping("/new")
public String newtest2() {
//....
}
}
今、私がリクエストを行うと /test2/new
、リクエストは他のコントローラーに送られ /test1/new
ます。ここで何か問題がありますか?