shiro项目在Websphere下项目变得很慢很卡
参考文章:https://www.oschina.net/question/1411151_2138359原因及解决办法:在 WAS上request.getRemoteHost() 语句的性能很差(执行时间大概2-3秒),处理方式是将shiro-all的jar包中的所有request.getRemoteHost()语句替换为request.getRemoteAddr() 然后重新编译打包。...