最佳答案
假设我们正在讨论路径RequestMappings等.
在我的应用程序中,我有一个带有一堆公共静态最终常量的类,我在@RequestMapping注释中引用它.
原文链接:https://www.f2er.com/spring/432158.html在我的应用程序中,我有一个带有一堆公共静态最终常量的类,我在@RequestMapping注释中引用它.
因此常量可能如下所示:
public class Pages {
public static final String FOO_URL "foo/foo.action"
public static final String FOO_VIEW "test/foo"
public static final String BAR_URL "bar/bar.action"
public static final String BAR_VIEW "test/bar"
}
然后在你的控制器内你会像这样引用它们:
@RequestMapping(value=Pages.FOO_URL,method=RequestMethod.GET)
public String handleFoo(Model model) {
return Pages.FOO_VIEW;
}
它们很容易改变,因为它们都在一个地方.