|
楼主 |
发表于 2021-1-18 08:19:00
|
显示全部楼层
问题还没有找到,麻烦在帮忙分析一下。
1.访问空白页,数据库肯定没有问题,因为无法访问后,其他应用连接数据库访问,没有问题。
2.服务出现问题后,单独启动tomcat后,就正常了。说明license-server没有问题。
3.出现问题后:"login().............33333"没有打印出来。1111和2222能正常打印。
System.out.println("login().............111111");
ContextHelper.getSessionContext().put(OrgConstants.SYSTEM_LOGIN_IP, ip);
name = getLoginNameByMail(name);
//TODO: 默认语言是中文,将来这个点应该可配置
if (Utils.isEmptyString(lang)){
lang = "zh_CN";
}
System.out.println("login().............22222");
List result = (List)OrgUtils.login1(name, loginDate, pwd, lang, checkPwd, ip, options);
System.out.println("login().............33333");
if ("true".equals(result.get(0))){
Operator operator = ContextHelper.getOperator();
UserManager.instance().addUser(new User(ContextHelper.getSessionContext().getSessionID(), operator.getName(), operator.getID(), CommonUtils.getCurrentDateTime(), operator.getLoginIP()));
} |
|