次のコードスニペットを使用する場合:
public class MyUrls {
// properties get initialized using static{...}
public final static String URL_HOMEPAGE = properties.getProperty("app.homepage");
}
@Controller
public class HomepageController {
@RequestMapping(MyUrls.URL_HOMEPAGE)
public String homepage() {
return "/homepage/index";
}
}
次のエラーが発生します。
The value for annotation attribute RequestMapping.value must be a constant expression
しかし、実際にURL_HOMEPAGE
は、として宣言されているため、定数public final static
です。私が間違っている?この問題を解決するにはどうすればよいですか?