私のコントローラーには、これらの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()}.
この問題を解決するにはどうすればよいですか?