Is there a framework or api to let multiple isolated sandboxes run in a single java vm?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Under the Sun/Oracle implementation of the Java library, if you want to sandbox what might loosely be called “GUIs” then you need to use the non-standard, undocumented and unsupported
sun.awt.AppContextAPI.Other than using APIs involved in that sort of mess, you just need to keep separate
ClassLoaders and perhapsThread/ThreadGroups.There was a JSR for “isolates”, but nothing has come of that as yet.