Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在视图中,我将如何访问返回视图的控制器和方法的名称?这在 Grails 中相当直截了当,但我不知道如何在普通 Spring 中进行。
JSP(您使用的是 JSP 视图对吗?)没有${controllerName}像 Grails 中那样的表达式。但是您可以通过模型传递控制器的名称和方法。
${controllerName}
只需在控制器方法中执行
String className = this.getClass().getName();
并将类名添加到模型。