RMI 실행 시 VM arguments 값을 설정해야 한다.
하지만 Executable jar에 VM arguments 값을 어떻게 적용할 것인가?
manifest 파일에서 처리할 수 있다면 best겠지만,
필자는 모르겠다. (안다면 comment 부탁 ㅠㅠ)
다른 방법으로 다음과 같이 소스 코드 내에서 처리할 수 있다.
System.setProperty("java.security.manager", "");
System.setProperty("java.security.policy", "policy/policy");
하지만 Executable jar에 VM arguments 값을 어떻게 적용할 것인가?
manifest 파일에서 처리할 수 있다면 best겠지만,
필자는 모르겠다. (안다면 comment 부탁 ㅠㅠ)
다른 방법으로 다음과 같이 소스 코드 내에서 처리할 수 있다.
System.setProperty("java.security.manager", "");
System.setProperty("java.security.policy", "policy/policy");