Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve documentation on support for a language-only Locale requested via "Accept-Language" #28673

Closed
chulbert opened this issue Jun 21, 2022 · 4 comments
Assignees
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) type: documentation A documentation task
Milestone

Comments

@chulbert
Copy link

chulbert commented Jun 21, 2022

@Test
public void resolvePreferredAgainstLanguageOnly() {
    this.resolver.setSupportedLocales(Arrays.asList(GERMANY, US));
    assertThat(this.resolver.resolveLocaleContext(exchange(UK, ENGLISH)).getLocale()).isEqualTo(US);
}

This test should pass. If a client requests en-GB, en and the supported locales are de-DE, en-US then this should resolve to US because en (English of any kind) matches en-US (US English). Instead it incorrectly resolves to en-GB.

Note: There is an existing test with the same name that I believe has this wrong:

@Test
public void resolvePreferredAgainstLanguageOnly() {
    this.resolver.setSupportedLocales(Collections.singletonList(ENGLISH));
    assertThat(this.resolver.resolveLocaleContext(exchange(GERMANY, US, UK)).getLocale()).isEqualTo(ENGLISH);
}

This test should also pass but not because it "matches" -- it should resolve to ENGLISH because that's the only supported locale.

This affects all versions.

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged or decided on label Jun 21, 2022
@rstoyanchev rstoyanchev added the in: web Issues in web modules (web, webmvc, webflux, websocket) label Jan 24, 2023
@rstoyanchev
Copy link
Contributor

rstoyanchev commented Jan 27, 2023

I think this makes sense.

Currently, we have special handling for a language-only, supported Locale, but we don't have that for a language-only, requested Locale. For example if en is requested, it should match to any en-* supported Local, but instead it fails to match, and falls back on the first supported locale. We should be able to return the first matching supported locale (including language and country) since it meets the client (language only) requirement, and is more specific.

This test should also pass but not because it "matches" -- it should resolve to ENGLISH because that's the only supported locale.

We fall back on the default supported Locale, if there is one configured, or otherwise on the first supported Locale. In this case, we just happen to match even earlier on the language. I don't see anything wrong there.

@rstoyanchev rstoyanchev self-assigned this Jan 27, 2023
@rstoyanchev
Copy link
Contributor

Team Decision: following an extensive team discussion, first I'll say the current behavior is intentional.

The idea is that a server is in control of what should happen, and can for example be configured to also support en in addition to en-US and en-GB it wants to support requests for a language-only locale such as en, but if it's not added then it means we don't match on such request, and fall back on the default Locale. This is also how java.util.ResourceBundle behaves.

For now I am going to turn this into a documentation issues in order to make it more clear that this is by design.

We can also consider a future enhancement where we take further action if we fall back on the default locale, and there are 1 or more requested locales, and the default locale doesn't match the language of any of them. However, that would be a behavior change and we could only introduce in 6.1 at the earliest.

@rstoyanchev rstoyanchev added type: documentation A documentation task and removed status: waiting-for-triage An issue we've not yet triaged or decided on labels Feb 7, 2023
@rstoyanchev rstoyanchev added this to the 6.0.5 milestone Feb 7, 2023
@rstoyanchev rstoyanchev changed the title AcceptHeaderLocaleContextResolver Resolution Error Improve documentation on how to support language-only locales specified in "Accept-Language" Feb 7, 2023
@rstoyanchev rstoyanchev changed the title Improve documentation on how to support language-only locales specified in "Accept-Language" Improve documentation on support for a language-only Locale requested via "Accept-Language" Feb 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in: web Issues in web modules (web, webmvc, webflux, websocket) type: documentation A documentation task
Projects
None yet
Development

No branches or pull requests

4 participants
@rstoyanchev @chulbert @spring-projects-issues and others