¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.ruoyi.framework.config; |
| | | |
| | | import org.springframework.context.annotation.Bean; |
| | | import org.springframework.context.annotation.Configuration; |
| | | import org.springframework.web.servlet.LocaleResolver; |
| | | import org.springframework.web.servlet.config.annotation.InterceptorRegistry; |
| | | import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; |
| | | import org.springframework.web.servlet.i18n.LocaleChangeInterceptor; |
| | | import org.springframework.web.servlet.i18n.SessionLocaleResolver; |
| | | import com.ruoyi.common.constant.Constants; |
| | | |
| | | /** |
| | | * èµæºæä»¶é
ç½®å è½½ |
| | | * |
| | | * @author ruoyi |
| | | */ |
| | | @Configuration |
| | | public class I18nConfig implements WebMvcConfigurer |
| | | { |
| | | @Bean |
| | | public LocaleResolver localeResolver() |
| | | { |
| | | SessionLocaleResolver slr = new SessionLocaleResolver(); |
| | | // é»è®¤è¯è¨ |
| | | slr.setDefaultLocale(Constants.DEFAULT_LOCALE); |
| | | return slr; |
| | | } |
| | | |
| | | @Bean |
| | | public LocaleChangeInterceptor localeChangeInterceptor() |
| | | { |
| | | LocaleChangeInterceptor lci = new LocaleChangeInterceptor(); |
| | | // åæ°å |
| | | lci.setParamName("lang"); |
| | | return lci; |
| | | } |
| | | |
| | | @Override |
| | | public void addInterceptors(InterceptorRegistry registry) |
| | | { |
| | | registry.addInterceptor(localeChangeInterceptor()); |
| | | } |
| | | } |