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

I have a JSF 2.0 application which allows the user to change the site's language which should affect both texts and images.

Currently the locale is set in a session bean and each page has with locale set from this session bean. It works great for texts. But I have trouble with images. Currently we are using images like this:

<h:graphicImage name="flag.gif" library="img">

This leads to generation of the following HTML code returned to the user agent:

<img src="/AppRoot/faces/javax.faces.resource/flag.gif?ln=img" .... />

Let's assume that the user requests the page in English. The GET request for the image above is processed by ResourceHandler.handleResourceRequest(). It uses ViewHandler.calculateLocale() to identify the correct locale prefix. I have implemented my own ViewHandler with calculateLocale() that retrieves the locale from the user's session. As a result it correctly creates a resource instance which points to "/resources/english/img/flag.gif". Then the user changes his/her locale to french. When the page is reloaded, the same image URL is rendered and requested. This time ViewHandler.calculateLocale() returns Locale.FRENCH to the ResourceHandler which results in the creation of resource with path "/resources/french/img/flag.gif".

Before streaming the image, according to the specification, the ResourceHandler.handleResourceRequest() must do the following:

•Call Resource.userAgentNeedsUpdate(javax.faces.context.FacesContext). If this method returns false, HttpServletRequest.SC_NOT_MODIFIED must be passed to HttpServletResponse.setStatus(), then handleResourceRequest must immediately return.

It detects that the resource is not updated since the previous browser request - not taking into account that the previous request to this "logical" URL lead to different "physical" resource on the server. And returns HTTP 304 which leads to the previous English image displayed again to the user.

If the page is refreshed with Shift+F5, the french image is correctly downloaded since no "If-Modified-Since" is sent by the user agent.

There is always the possibility to add the locale prefix manually with EL in the library name like this:

<h:graphicImage library="#{userContext.locale}/img" name="flag.gif" />

But I still think that the former approach should work and is cleaner.

I am wondering:

  1. Why doesn't JSF produce a "src" that is the actual path to the image in case we use "name" and "library" attributes for ? JSF has all the information to build the full path on the initial page request - including the locale form the UIViewRoot (no need to implement my own ViewHandler). My assumption is that it is because according to the specification resources can also be put in a JAR in the class path. Still the url to the servlet could be rendered only for retrieving the class path located resources for which no direct url can be given.

  2. Why does the specification state that the generated image "src" attribute should include the library but says nothing about the locale prefix (see Resource.getReqestPath())? The Image src is retrieved by Resource.getRequestPath(). If the prefix was included in the URL french and english images would not be interpreted by the browser as a single "modified" resource.

Any ideas are welcome!

share|improve this question

1 Answer

Actually, you can just as well use regular HTML <img> tag and build your own path.
It seems that it is best to create your own Controller for resolving paths:

<img alt="#{i18n['some.image.title']}" src="#{localizationController.someImage}" />

Localization Controller could read the context path (the base URL of the current application) like this:

String basePath = FacesContext.getCurrentInstance().getExternalContext().getRequestContextPath();

ExternalContext also provides real path name (i.e. the one on disk, if you use exploded format) – see getRealPath() method, should you ever needed.

Why I prefer this method? It is extremely simple and pretty powerful: one can use Localization Controller not just to provide paths to localized objects like CSS files (or at least main style sheet overrides), client-side scripts and of course images, but also to actually provide dynamic localizable context (i.e. arrays of translatable strings in JavaScript).

To answer your specific questions:

  1. The short answer is I don't know. I'd love to think about it that somebody who designed this API carefully weighted all pros and cons and chose optimal solution (although not satisfying every possible Use Case).

  2. For that I can give you precise answer. Basically, correctly Internationalized application should not contain any image that might depend on Locale, i.e. be culture-specific. This is quite idealistic view of the world but to be honest having image that actually depends on Locale should be rare case.
    If I understood your specific problem, you want to switch some specific country flag based on current Locale. In fact, you can just as well use conditional rendering here (render="#{someController.someBooleanMethod}") and actually write all image references at once. I know it sucks but this is one viable solution.

share|improve this answer
1  
The solutions you gave above a really rather powerful and easy to apply. But correct me if I am wrong: the introduction of Libraries and moving the most of presentation data description (images, css, metainfo etc) into JSF tags allows us to create a good abstraction of the presentation. After reading the JSR 314 I had a feeling that images, css etc are now also a part of the internationalization in JSF 2.0. So should this be a new tendency to include images in the i18n and it is not good realized in the JSF or just not suitable use of the technology? – Dmitry Alexandrov Aug 13 '11 at 11:32
JSF components are definitely better way of doing things. That is if you are going to re-use them. As for JSF 2.0, I really wish it provided the easy mechanism for localizing files like CSS, JS, images. I might be unaware of something and I would love somebody to enlighten me, but I don't know how to make such kind files depend on Locale (other that the solution above). Now, I wouldn't recommend to use many Locale-dependent images. They are pretty hard to Localize and therefore should be avoided. No problems if original designer provides them, but good luck with that... – Paweł Dyda Aug 13 '11 at 11:44
>"If I understood your specific problem, you want to switch some specific country flag based on current Locale." Actually this was a book example. I was trying to i18n images like "Next", "Previous", etc. >"Basically, correctly Internationalized application should not contain any image that might depend on Locale, i.e. be culture-specific." Here I would argue. According to section "2.6.1.3 Resource Identifiers" of the JSF 2.0 Specification: ><resourceIdentifier> consists of several segments, specified as follows. >[localePrefix/][libraryName/][libraryVersion/]resourceName[/resourceVersion] – Irina Marudina Aug 17 '11 at 11:18
Also: >function deriveResourceId(prefix, resourceLoader, resourceName, libraryName) { var localePrefix = getLocalePrefix(); There is an algorithm in the specification for deriving the client locale. So I think each JSF implementation should be careful about switching locales. If the locale is switched, then the image should definitely be send anew to the client. – Irina Marudina Aug 17 '11 at 11:22
I have tried the following: I used an h:graphicImage with name and library attributes. It generated link to the FacesServlet. I debugged the calculateLocale() method - it returned "en" because it was my primary locale in the browser. It returned me correctly the english image. Then I opened my Language settings in the browser and put "fr" locale on top of "en" locale. In this case MyFaces correctly identified that the locale of the image is "fr", but it didn't return the new image since the "en" image was newer than "fr" image! – Irina Marudina Aug 17 '11 at 11:22

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.