我有2个具有相同请求映射的类:
@RequestMapping(path="home)
class ParentController{
@RequestMapping(value="index")
public void home(){
}
}
@RequestMapping(path="home")
class ChildController{
@RequestMapping(value="index")
public void demo(){
}
}
应用程序失败,因为它具有相同的请求映射。 但我希望ChildController覆盖ParentController。 这可能吗?