在我的控制器中,我有这些 ff 方法
@RequestMapping("/countryList.html")
@ModelAttribute("countries")
public Collection<Country> getCountries() {
return worldService.getAllCountries();
}
@RequestMapping("/countryList.html")
public String getName() {
return viewers_name;
}
我试图做的是在 countryList.html 中,它将返回国家和当前查看它的用户的名称,但是在访问 countryList.html 时它返回了一个异常
Ambiguous handler methods mapped for HTTP path '/countryList.html': {public java.lang.String levelup.world.web.CountryController.getName(), public java.util.Collection levelup.world.web.CountryController.getCountries()}.
我将如何解决这个问题?