이 위치에 deployment.properties c : \ windows \ sun \ Java \ deployment \ deployment.properties라는 텍스트 문서를 넣으십시오.
Java 설명서의 내용에도 불구하고 필수 설정을 사용하지 않으면 deployment.config 파일이 필요하지 않습니다.
appdata 폴더에 deployment.properties 파일이 이미있는 경우에도이 파일은 컴퓨터의 모든 사용자에 대한 기본값을 변경합니다. Java 32 제어판을 열면 설정을 읽으므로 설정이 적용되는지 확인할 수 있습니다.
다음은 deployment.properties 파일에 넣은 내용입니다.
#disables the java desktop shortcut on install - might not be required for modern versions
deployment.javaws.shortcut="NEVER"
#tells sets security level to it's minimum "MEDIUM" to allow for apps to run on outdated java versions
deployment.security.level=MEDIUM
#disabled certificate checking so that java apps load much faster. Java still checks the certificate
#blacklist though so the certificate is still used.
deployment.security.validation.ocsp=true
#moves the user trusted certificates store to a shared location so we can pre-approve controls
deployment.user.security.trusted.certs=C\:\\Program Files\\Java\\jre7\\security\\trusted.certs
마지막 비트는 "이 앱을 실행 하시겠습니까?"상자를 제거하는 가장 좋은 방법입니다. trusted.certs 위치를 공유 위치로 설정 한 후 "다시 표시 안 함"확인란을 수동으로 선택하여 자신의 trusted.certs 파일을 작성하십시오. 그들은이 trusted.certs 파일을이 Deployment.properties 파일과 더 이상 보안 팝업없이 비올라를 사용하여 모든 시스템에 배치합니다.
경로에 추가 슬래시가 필요합니다. 콜론은 예약 문자이며 백 슬래시는 이스케이프 문자입니다.
Windows Control Panel
애플릿 의 보안 설정을 조정하여 처리 할 수 있습니다 . 어떤 운영 체제를 나타내지 않았으므로 Windows를 가정해야합니다.