Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using prettyfaces for handling URL paths.

What I want to do is set a language property upon following a link (to choose language). Something like this:

<h:link outcome="#{bean.currentPath}" value="English"> <!-- path goes to self -->
    <f:param name="link" value="#{currentTopic.link}" />
    <f:param name="lang" value="eng" />
</h:link>

The prettyconfig retrieves the link and follows it, but how can I send the parameter to the language bean?

<url-mapping id="">
    <pattern value="/topic/#{link:bean.link}" />
    <view-id>/faces/topic.jsf</view-id>
</url-mapping>

The bean is stateless (@RequestScoped) and the language bean is stateful (@SessionScoped). Both are @ManagedBeans.

share|improve this question
is it possible to add it to your exisitng url pattern? /topic/#{link:bean.link}/#{lang:languageBean.lang} – Dave Maple May 12 '11 at 14:53
I've considered it, however my professor here at the uni. said language should be defined completely on the serverside, without having it in the URL for the user to see because it's only defined once. – MrClean May 12 '11 at 16:26
This is however a huge SEO disadvantage. Content in different languages would be marked as duplicate content this way. – BalusC May 12 '11 at 17:04
+1 BalusC -- your site would benefit greatly by making the content available for each language on a distict url so that they can be indexed independently. – Dave Maple May 12 '11 at 17:09
Ah I see. Good point. I'll consider switching over to the solution you've provided Dave, thanks :) – MrClean May 12 '11 at 22:12

1 Answer

up vote 0 down vote accepted

Here's an option for you that still uses rest urls. It's not extremely elegant but probably accomplishes what you're looking for:

<pretty:link mappingId="LanguageTopic">
    <f:param name="link" value="#{currentTopic.link}" />
    <f:param name="lang" value="eng" />
    English
</pretty:link>

pretty-config.xml:

<url-mapping id="LanguageTopic">
    <pattern value="/topic/#{link:linkBean.link}/#{lang:languageBean.lang}/" />
    <view-id>/faces/topic.jsf</view-id>
    <action>#{linkBean.cleanUrl}</action>
</url-mapping>

<url-mapping id="Topic">
    <pattern value="/topic/#{link:linkBean.link}/" />
    <view-id>/faces/topic.jsf</view-id>
</url-mapping>

language bean:

@ManagedBean(name = "languageBean")
@SessionScoped
public class LanguageBean implements Serializable {

    private static final long serialVersionUID = 4460586548949990787L;

    /**
     * Stores the users language preference
     */
    private String lang;

    public String getLang() { return this.lang; }
    public void setLang(String lang) { this.lang = lang; }

}

link bean:

@ManagedBean(name = "linkBean")
@RequestScoped
public class LinkBean {

    /**
     * Stores the resource the user is currently accessing
     */
    private String link;

    public String getLink() { return this.link; }
    public void setLink(String link) { this.link = link; }

    /**
     * Cleans language specific rest urls to non-specific urls
     */
    public void cleanUrl() {
        final ExternalContext externalContext = FacesContext.getCurrentInstance().getExternalContext();

        try {
            externalContext.redirect("/topic/" + this.link + "/");
        } catch (IOException ex) {
            //log or whatever you want here
        }    
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.