0

I am trying to load a class present in a war file in tomcat from a class in a jar in tomcat lib. I am doing this using Class.forname("myclass") but the application is throwing class not found exception. i guess this is because the webapp will have its own class loader. can someone suggest how to fix this

4

2 に答える 2

0

Thread#getContextClassLoader() を使用して、WAR ディストリビューションの一部になる可能性のあるクラスをインスタンス化する必要があります。ただし、Tomcat が Web アプリのクラスローダーで初期化することを確認してください。

于 2016-01-25T10:12:55.713 に答える