Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我知道要实例化的包名称和类,是否可以通过另一个已部署的应用程序在已部署的应用程序中实例化一个类?在任何 jboss 或 tomcat 中?
谢谢和问候,〜K。
是的,您可以通过反射来实现
例子
Bar aBar; String barClassName = getBarImplClass(); aBar = (Bar) Class.forName(barClassName).newInstance();