Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
sentinel
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
曲欣亮
sentinel
Commits
57062a76
Commit
57062a76
authored
Nov 14, 2018
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xx
parent
b7277067
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
LocaleCookieInterceptor.java
...golm/film/config/interceptor/LocaleCookieInterceptor.java
+3
-0
No files found.
src/main/java/com/egolm/film/config/interceptor/LocaleCookieInterceptor.java
View file @
57062a76
...
@@ -6,6 +6,7 @@ import javax.servlet.http.Cookie;
...
@@ -6,6 +6,7 @@ import javax.servlet.http.Cookie;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletRequest
;
import
javax.servlet.http.HttpServletResponse
;
import
javax.servlet.http.HttpServletResponse
;
import
org.apache.log4j.Logger
;
import
org.springframework.context.i18n.LocaleContextHolder
;
import
org.springframework.context.i18n.LocaleContextHolder
;
import
org.springframework.stereotype.Component
;
import
org.springframework.stereotype.Component
;
import
org.springframework.web.servlet.handler.HandlerInterceptorAdapter
;
import
org.springframework.web.servlet.handler.HandlerInterceptorAdapter
;
...
@@ -16,10 +17,12 @@ import com.egolm.common.StringUtil;
...
@@ -16,10 +17,12 @@ import com.egolm.common.StringUtil;
public
class
LocaleCookieInterceptor
extends
HandlerInterceptorAdapter
{
public
class
LocaleCookieInterceptor
extends
HandlerInterceptorAdapter
{
public
static
final
String
language
=
"i18n_language"
;
public
static
final
String
language
=
"i18n_language"
;
private
static
final
Logger
logger
=
Logger
.
getLogger
(
LocaleCookieInterceptor
.
class
);
@Override
@Override
public
boolean
preHandle
(
HttpServletRequest
req
,
HttpServletResponse
resp
,
Object
handler
)
throws
Exception
{
public
boolean
preHandle
(
HttpServletRequest
req
,
HttpServletResponse
resp
,
Object
handler
)
throws
Exception
{
String
str
=
this
.
getParameterValue
(
req
,
language
);
String
str
=
this
.
getParameterValue
(
req
,
language
);
logger
.
debug
(
language
+
" = "
+
str
+
" -> "
+
req
.
getRequestURI
());
if
(
str
==
null
||
!
str
.
matches
(
"[a-z]{2}_[A-Z]{2}"
))
{
if
(
str
==
null
||
!
str
.
matches
(
"[a-z]{2}_[A-Z]{2}"
))
{
str
=
"zh_CN"
;
str
=
"zh_CN"
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment