为什么要在 App Engine 上设置系统属性(例如 java.vm.specation.version)?
根据 App Engine 文档,您可以在部署描述符中为应用程序设置系统属性和环境变量,并且 App Engine 在初始化应用程序服务器上的 JVM 时设置以下系统属性:
* file.separator
* path.separator
* line.separator
* java.version
* java.vendor
* java.vendor.url
* java.class.version
* java.specification.version
* java.specification.vendor
* java.specification.name
* java.vm.vendor
* java.vm.name
* java.vm.specification.version
* java.vm.specification.vendor
* java.vm.specification.name
* user.dir
为什么要设置这些系统中的任何一个特性?
According to the App Engine documentation, you can set system properties and environment variables for your app in the deployment descriptor and App Engine sets the following system properties when it initializes the JVM on an app server:
* file.separator
* path.separator
* line.separator
* java.version
* java.vendor
* java.vendor.url
* java.class.version
* java.specification.version
* java.specification.vendor
* java.specification.name
* java.vm.vendor
* java.vm.name
* java.vm.specification.version
* java.vm.specification.vendor
* java.vm.specification.name
* user.dir
Why would you want to set any of these system properties?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以用作使现有库工作的解决方法,这可能取决于这些属性的特定值。
Might be used as a workaround to make existing libraries work which may depend on particular values for these properties.