Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
928 views
in Technique[技术] by (71.8m points)

jsf - Automatically include view parameters in URL

I have simple jsf page with view params and load method which is processing those params:

<f:metadata>
 <f:viewParam name="param1" value="#{bean.param1}"/>
 <f:viewParam name="param2" value="#{bean.param2}"/>
 <f:viewParam name="param3" value="#{bean.param3}"/>
 <f:event type="preRenderView" listener="#{bean.load()}"/>
</f:metadata>

I also set some initial values in @PostConstruct. How to redirect user to new location that include those parameters (which are not null). For example user enter in browser:

domain.com/page.jsf

and is redirected to:

domain.com/page.jsf?param1=valueA

because param1 was set in @PostConstruct.

Another question - I have links on page referencing same view:

<h:link value="clickme">
 <f:param name="param3" value="otherValue"/>
</h:link>

When user enters page with ?param1=someValue and clicks link, got redirected to ?param3=otherValue but I want to redirect to ?param1=someValue&param3=otherValue. I know I can add more parameters in <h:link> but it's diffucult to add every possible param in every <h:link>

PS. I use BalusC tip from this topic JSF 2 and Post/Redirect/Get?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

As to the 1st question: you can add includeViewParams=true to the navigation case outcome. But you can never guarantee that you'll sucessfully be redirected while you're doing that inside a preRenderView method. It might be already too late then.

As to the 2nd question: you can set the includeViewParams attribute of <h:link> to true.

<h:link value="clickme" includeViewParams="true">
    <f:param name="param3" value="otherValue"/>
</h:link>

Alternatively, you can also add includeViewParams=true to the outcome.

<h:link value="clickme" outcome="otherPage?includeViewParams=true">
    <f:param name="param3" value="otherValue"/>
</h:link>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...