我已经解决了以下问题:
WebStart启动我的应用程序后,请禁用安全管理器。我
main()方法的第一行:
System.setSecurityManager(null);
告诉Tomcat使用默认的类加载器:
context.setLoader(new WebappLoader(getClass().getClassLoader()));
现在,Tomcat在WebStart中运行:-D

我已经解决了以下问题:
WebStart启动我的应用程序后,请禁用安全管理器。我
main()方法的第一行:
System.setSecurityManager(null);
告诉Tomcat使用默认的类加载器:
context.setLoader(new WebappLoader(getClass().getClassLoader()));
现在,Tomcat在WebStart中运行:-D