This is an automated email from the ASF dual-hosted git repository.
git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/struts-site.git
The following commit(s) were added to refs/heads/asf-staging by this push:
new cf987f212 Updates stage by Jenkins
cf987f212 is described below
commit cf987f212ef2a295af112d2e67dd948199bf652d
Author: jenkins <[email protected]>
AuthorDate: Tue Oct 31 09:29:30 2023 +0000
Updates stage by Jenkins
---
.../accessing-application-session-request-objects.html | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git
a/content/core-developers/accessing-application-session-request-objects.html
b/content/core-developers/accessing-application-session-request-objects.html
index c9f60603f..2432982da 100644
--- a/content/core-developers/accessing-application-session-request-objects.html
+++ b/content/core-developers/accessing-application-session-request-objects.html
@@ -211,23 +211,25 @@ Page attributes are accessed via OGNL using the <code
class="language-plaintext
the <code class="language-plaintext highlighter-rouge">#application</code>
stack value.</p>
<p>The <code class="language-plaintext highlighter-rouge">#attr</code> stack
value will search the <code class="language-plaintext
highlighter-rouge">javax.servlet.jsp.PageContext</code> for the specified key.
If the <code class="language-plaintext highlighter-rouge">PageContext</code>
-doesn’t exist, it will search the request, session, and application scopes, in
that order.</p>
+doesn’t exist, it will search the <code class="language-plaintext
highlighter-rouge">request</code>, <code class="language-plaintext
highlighter-rouge">session</code> and <code class="language-plaintext
highlighter-rouge">application</code> scopes, in that order.</p>
-<p><strong>Accessing attributes in the Application, Session, Request, or Page
scope from a JSP</strong></p>
+<p><strong>Accessing attributes in the Application, Session, Request or Page
scope from a JSP</strong></p>
-<div class="language-jsp highlighter-rouge"><div class="highlight"><pre
class="highlight"><code><span class="nt"><p></span>Retrieve the attribute
(property), with key myId, from the specified scope:<span
class="nt"></p></span>
+<p>Retrieve the attribute (property), with key <code class="language-plaintext
highlighter-rouge">myId</code>, from the specified scope:</p>
-<span class="nt"><s:property </span><span class="na">value=</span><span
class="s">"#application.myId"</span> <span class="nt">/></span>
+<div class="language-jsp highlighter-rouge"><div class="highlight"><pre
class="highlight"><code><span class="nt"><s:property </span><span
class="na">value=</span><span class="s">"#application.myId"</span> <span
class="nt">/></span>
<span class="nt"><s:property </span><span class="na">value=</span><span
class="s">"#session.myId"</span> <span class="nt">/></span>
<span class="nt"><s:property </span><span class="na">value=</span><span
class="s">"#request.myId"</span> <span class="nt">/></span>
<span class="nt"><s:property </span><span class="na">value=</span><span
class="s">"#attr.myId"</span> <span class="nt">/></span>
-
-<span class="nt"><p></span>Reminder: #attr is for Page scope attributes
first, but will search the remaining scopes, in order, seeking a match.<span
class="nt"></p></span>
</code></pre></div></div>
+<p><strong>Note</strong>: <code class="language-plaintext
highlighter-rouge">#attr</code> is for Page scope attributes first, but will
search the remaining scopes, in order, seeking a match.
+In opposite using just <code class="language-plaintext
highlighter-rouge">#</code> means you want to fetch a value from the top of the
<a href="../tag-developers/access-to-valuestack-from-jsps.md">ValueStack</a>
+without searching down the stack.</p>
+
</section>
</article>