You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "ASF GitHub Bot (Jira)" <ji...@apache.org> on 2023/06/19 07:28:00 UTC

[jira] [Work logged] (WW-5261) Refactor TagUtils#getStack()

     [ https://issues.apache.org/jira/browse/WW-5261?focusedWorklogId=866207&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-866207 ]

ASF GitHub Bot logged work on WW-5261:
--------------------------------------

                Author: ASF GitHub Bot
            Created on: 19/Jun/23 07:27
            Start Date: 19/Jun/23 07:27
    Worklog Time Spent: 10m 
      Work Description: lukaszlenart merged PR #691:
URL: https://github.com/apache/struts/pull/691




Issue Time Tracking
-------------------

    Worklog Id:     (was: 866207)
    Time Spent: 40m  (was: 0.5h)

> Refactor TagUtils#getStack()
> ----------------------------
>
>                 Key: WW-5261
>                 URL: https://issues.apache.org/jira/browse/WW-5261
>             Project: Struts 2
>          Issue Type: Improvement
>          Components: Core, Core Tags
>            Reporter: Lukasz Lenart
>            Priority: Major
>             Fix For: 6.2.0
>
>          Time Spent: 40m
>  Remaining Estimate: 0h
>
> Such code
> {code:java}
> if (stack == null) {
>             HttpServletResponse res = (HttpServletResponse) pageContext.getResponse();
>             Dispatcher du = Dispatcher.getInstance();
>             if (du == null) {
>                 throw new ConfigurationException("The Struts dispatcher cannot be found.  This is usually caused by "+
>                         "using Struts tags without the associated filter. Struts tags are only usable when the request "+
>                         "has passed through its servlet filter, which initializes the Struts dispatcher needed for this tag.");
>             }
>             stack = du.getContainer().getInstance(ValueStackFactory.class).createValueStack();
>             HttpParameters params = HttpParameters.create(req.getParameterMap()).build();
>             Map<String, Object> extraContext = du.createContextMap(new RequestMap(req),
>                     params,
>                     new SessionMap<>(req),
>                     new ApplicationMap(pageContext.getServletContext()),
>                     req,
>                     res);
>             extraContext.put(ServletActionContext.PAGE_CONTEXT, pageContext);
>             stack.getContext().putAll(extraContext);
>             req.setAttribute(ServletActionContext.STRUTS_VALUESTACK_KEY, stack);
>             // also tie this stack/context to the ThreadLocal
>             ActionContext.of(stack.getContext()).bind();
>         }
> {code}
> should be replaced with an exception, if {{stack}} is null, it means tag was used out of action scope.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)