在jsp中使用spring:eval显示属性值

时间:2013-06-06 20:27:52

标签: java spring spring-mvc spring-security

我正在寻找帮助在jsp文件中显示Spring属性值。

我找到了一个与我的要求相同的链接。 点击Using spring:eval inside hasRole

我正在使用 Spring 2.5

这是我的applicationContext-util.xml文件:

xmlns:util="http://www.springframework.org/schema/util"
xmlns:context="http://www.springframework.org/schema/context"
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd

<util:properties id="viewPropertyConfigurer" location="classpath:conf/app_config.properties"/>
<context:property-placeholder properties-ref="viewPropertyConfigurer" />

在我的menu.jsp

<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>
<spring:eval expression="@viewPropertyConfigurer.getProperty('role.admin')" />
在lib文件夹中的

我也有spring-web-2.5.6.jar文件,以确保eval在jsp中工作正常。但是一旦我添加spring就不确定是什么问题:eval标签jsp根本没有加载它抛出

[ERROR,context.JspTilesRequestContext,http-8080-1] -[UID=galips - SessionID=691A896E807850568DF9B0F5356F6CB2] - JSPException while including path '/WEB-INF/jsp/menu.jsp'.

在我的应用程序中,我正在使用servlet过滤器,希望它不会成为问题。

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

据我所知{3}在{3} EvalTag中添加了@since 3.0.1。如果您使用的是Spring 2.5,则表示您没有<spring:eval>支持。

可能的解决方案:

  • 切换到Spring 3 +
  • 使用自定义处理程序拦截器向您的请求添加其他信息
  • 编写您自己的标记以从应用程序上下文中提取信息

更新(选项2示例):

public class CommonViewAttributesInterceptor extends HandlerInterceptorAdapter {

    private static final String PROPERTIES_ATTR = "properties";

    private Properties properties = new Properties();

    @Override
    public void postHandle(HttpServletRequest request, HttpServletResponse response,
            Object handler, ModelAndView modelAndView) throws Exception {
        request.setAttribute(PROPERTIES_ATTR, properties);
    }

    public void setPropertiesSource(Resource resource) throws IOException {
        InputStream input = resource.getInputStream();
        try {
            properties.load(input);
        } finally {
            input.close();
        }
    }

}

然后,您需要在处理程序映射中配置此拦截器。