Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6150589
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T19:38:08+00:00 2026-05-23T19:38:08+00:00

Is there a nice way to resolve locale based on the URL and in

  • 0

Is there a nice way to resolve locale based on the URL and in the other hand map requests without any additional requirement ?

For example

http://example.com/ru/news    
http://example.com/iw/news

and in the controller still use the standard mappings

@Controller
@RequestMapping(value = "/news")
public class NewsController {

    // Controller methods ...    

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T19:38:09+00:00Added an answer on May 23, 2026 at 7:38 pm

    I’m not aware of an out-of-the-box solution for this, but it’s easy enough to implement using a custom interceptor and some wisely chosen mappings.

    Write an implementation of HandlerInterceptor which implements preHandle so that the locale string is extracted from the request URI, and then tag the request with that locale (see the source code for the similar LocalChangeInterceptor, which does a similar thing to what you need, but uses a request parameter instead of a path variable).

    Then wire it up using <mvc:interceptor> e.g.

    <mvc:interceptors>
        <mvc:interceptor>
            <mapping path="/*"/>
            <bean class="x.y.MyInterceptor" />
        </mvc:interceptor>
    </mvc:interceptors>
    

    You can then loosen up the request mapping on your controller to tolerate (and ignore) the locale part of the URI:

    @Controller
    @RequestMapping(value = "*/news")
    public class NewsController {
    
        // Controller methods ...    
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a nice way of achieving the following, without any additional mark-up? It
Is there any nice way to use an unordered_map so that you can access
Is there a nice way in the WinAPI to get a path relative to
Is there a nice way in Ext to move elements in DOM? I want
I want to swap both references, is there a nice way make such a
Is there a do until x: ... in Python, or a nice way to
Is there a way to write in Visual Studio in nice formated way the
Are there any nice libraries to render text in an image for Java? Java
Is there a nice way to extract get the R-help page from an installed
Is there a nice and clean way to find strings of capital letters of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.