Server JRE 8 中包含 deployment.security 设置的文件在哪里?

Where is the file containing deployment.security settings in Server JRE 8?

Oracle Java Server JRE 是否有 deployment.security 文件?我可以安全地制作一个并将其放在 C:\Program Files\Java\jre7\lib\ 文件夹中吗?

我的任务是根据安全清单配置 JRE。此清单上的六个项目涉及 "the 'deployment.properties' file for Java." 中的设置 我在 Java 文件夹或系统磁盘上的任何位置都找不到此文件。

我在 Windows 2008 R2 上有一个 Tomcat 8 网络服务 运行。我通过将 Java Server JRE(版本 8u152)文件放在 C:\Program Files\Java\server-jre-8u152-windows-x64 文件夹中并设置环境变量来安装 Server JRE。服务器 JRE 没有安装程序。一段时间以来,一切都 运行 没有错误。

我很想用建议的设置制作一个 deployment.security 文件并将其放在我的 Production 服务器上。

来源Oracle technotes guides deploy.properties 文件应位于此处:

\LocalLow\Sun\Java\Deployment\deployment.properties

更准确地说: 对于用户 jsmith

C:\Users\jsmith\AppData\LocalLow\Sun\Java\Deployment\deployment.properties

在该文件中有许多可以更改的 "deployment.security" 前缀设置。

Update 根据 Stig 看来这个文件丢失了 - Java 运行时环境 jre 版本 8 windows 2017-01-05 发现 V-66943 - 根据他们的文档:

Fix Text (F-73043r1_fix)
Create the JRE deployment.properties file:

No default file exists. A text file named deployment.properties, and the directory structure in which it is located must be manually created. The location must be aligned as defined in the \Lib\deployment.config file.
C:\Windows\Java\Deployment\deployment.properties is an example.

Now unfortunately lib\deployment.config does not exist but this might explain how to create it (though not sure it would be used or how to test if used)stig - java runtime environment jre version 8 windows 2016-09-27 finding V-66941

更新和宾果

By default no deployment.config file exists, so no system-wide deployment.properties file exists.
As per Oracles Technote

但是可以创建。看起来你只需要将它放在正确的位置并确保它被使用 - 你需要找到一种在

之前和之后测试条目的方法