8

我正在使用带有站点网格的 Spring 3。我想在 sitemesh 中定义的装饰器页面中引用 spring 上下文 bean。

问题是 SiteMesh 过滤器在 Spring 上下文之外工作,因此 sitemesh 装饰器 jsp 页面上的请求对象是本机 HttpServletRequest,而不是具有访问上下文等有用函数的包装器。

有没有办法以某种方式配置 spring 和 sitemesh 以访问装饰器页面中的 Spring 上下文?

4

4 回答 4

3

我有同样的问题,并通过使用过滤器解决了我的问题。我创建了一个环境过滤器,可用于为所有请求设置环境数据。在过滤器中自动装配您需要访问的 bean。

@Component
public class EnvironmentFilter extends OncePerRequestFilter {

    @Autowired
    Object bean;

    @Override
    protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException {

        request.setAttribute("bean", bean); // add bean or just specific properties of bean.

        filterChain.doFilter(request, response);

    }

}

在 web.xml 中配置过滤器,确保过滤器映射使用与 Sitemesh 过滤器相同的模式。

<filter>
    <filter-name>environmentFilter</filter-name>
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>

<filter-mapping>
    <filter-name>environmentFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

您的过滤器设置的属性现在可以从您的装饰器页面获得。

于 2013-01-04T16:21:54.690 回答
0

我不知道有一种方法可以按照您的要求进行操作,但是还有另一种选择。您可以在控制器方法参数中声明 HttpServletRequest。如果 Sitemesh 需要使用模型对象,只需将它们放在请求中即可。无论支持上下文是 servlet 请求还是 Spring MVC 模型,JSP 代码看起来都完全相同。

于 2011-08-17T04:13:36.420 回答
0

首先为你喜欢的任何东西创建一个单例,我只是设置一个字符串,但任何类都可以工作:

public class MySiteEnvironment {

    private String someConfigurationParameter;

    public String getSomeConfigurationParameter() {
        return someConfigurationParameter;
    }

    public void setSomeConfigurationParameter(String someConfigurationParameter) {
        this.someConfigurationParameter = someConfigurationParameter;
    }

    /* SINGLETON */
    private static final MySiteEnvironment INSTANCE = new MySiteEnvironment();

    private MySiteEnvironment() {
    }

    public static MySiteEnvironment getInstance() {
        return INSTANCE;
    }
}

接下来,您需要注入值:

<bean id="mySiteEnvironment" class="MySiteEnvironment" factory-method="getInstance">
        <property name="someConfigurationParameter" value="myValueOrBean"/>
    </bean>

最后,您可以通过以下方式访问它:

<%@ page import="MySiteEnvironment" %>
<% pageContext.setAttribute("env", MySiteEnvironment.getInstance()); %> 

现在可以使用表达式语言访问环境

于 2011-04-06T19:40:57.993 回答
0

我解决了这个问题,重新实现了 sitemesh 过滤器:

@Component
class SitemeshSpringFilter extends PageFilter implements ApplicationContextAware {
    ApplicationContext applicationContext;

    @Override
    public void doFilter(ServletRequest rq, ServletResponse rs,
            FilterChain chain) throws IOException, ServletException {
        def newRq = new ContextExposingHttpServletRequest(
                rq, getApplicationContext(), null);

        super.doFilter(newRq, rs, chain);
    }

    @Override
    public void setApplicationContext(ApplicationContext applicationContext)
    throws BeansException {
        this.applicationContext = applicationContext;
    }
}

在 web.xml 中,声明此过滤器:

<filter>
    <filter-name>sitemeshSpringFilter</filter-name>
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
    <init-param>
        <param-name>targetFilterLifecycle</param-name>
        <param-value>true</param-value>
    </init-param>
</filter>
<filter-mapping>
    <filter-name>sitemeshSpringFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

现在,sitemesh 过滤器将使用 ContextExposingHttpServletRequest 代替普通请求。

于 2013-05-03T02:44:19.240 回答