java.security.AccessControlException: File accessible thru browser but not within same server

有些话、适合烂在心里 提交于 2019-12-01 13:30:27

If you've configured a file as a "static" resource, it'll be served up by a separate pool of servers that are optimized for serving static content. A consequence is that the file isn't available to be opened from your app. "resource" files are available for the app to open and read.

That's documented here.

You'll need to use a relative path when opening a resource. You've shown an absolute path above.

If the server is running as a service, make sure that service has permissions to the folder and files you're trying to read.

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