|
@@ -41,12 +41,11 @@ public class LifeCenterInterCeptor extends HandlerInterceptorAdapter {
|
|
|
logger.error("url -- > " + url);
|
|
|
logger.error("url -- > " + url.contains( "/mobile" ));
|
|
|
|
|
|
- if (url.contains( "/error" )) {
|
|
|
+ if (url.contains( "/error" ) || url.contains( "/manager" ) || url.contains( "/console" ) ) {
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
if( url.contains( "/mobile" ) ) {
|
|
|
-
|
|
|
if( !url.equals( "/mobile/login" ) && !url.equals( "/mobile/check" ) ) {
|
|
|
if( sesMId == null ) {
|
|
|
response.sendRedirect( "/mobile/login" );
|