Does Java Security Manager decrease performance?

我怕爱的太早我们不能终老 提交于 2019-12-11 03:40:02

问题


Does implementing the Java Security Manager result in decreased performance?


回答1:


That depends entirely on the details of the implementation, and on the application.

It's certainly possible to implement a Security Manager that takes a long time to check certain permissions and an application that requires these premissions to be checked very frequently, resulting in horrible performance.

But typically, checking permissions does not happen often enough to cause significant performance decreases.



来源:https://stackoverflow.com/questions/3656328/does-java-security-manager-decrease-performance

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!