我们有一个使用Axis2库的Tomcat应用程序,该库捆绑在WAR-File中。在特定于应用程序的日志文件中,我看到了很多这样的消息(每个传入请求大约5次):
2015-07-28 09:50:17,666 INFO [http-8443-3] org.apache.axis2.deployment.ModuleDeployer: Deploying module: addressing - file:/srv/tomcat/webapps/MyApp/WEB-INF/lib/axis2-1.4.1.jar
2015-07-28 09:50:17,766 INFO [http-8443-3] org.apache.axis2.deployment.ModuleDeployer: Deploying module: addressing - file:/srv/tomcat/webapps/MyApp/WEB-INF/lib/axis2-1.4.1.jar
2015-07-28 09:50:17,867 INFO [http-8443-3] org.apache.axis2.deployment.ModuleDeployer: Deploying module: addressing - file:/srv/tomcat/webapps/MyApp/WEB-INF/lib/axis2-1.4.1.jar
2015-07-28 09:50:17,966 INFO [http-8443-3] org.apache.axis2.deployment.ModuleDeployer: Deploying module: addressing - file:/srv/tomcat/webapps/MyApp/WEB-INF/lib/axis2-1.4.1.jar
2015-07-28 09:50:18,066 INFO [http-8443-3] org.apache.axis2.deployment.ModuleDeployer: Deploying module: addressing - file:/srv/tomcat/webapps/MyApp/WEB-INF/lib/axis2-1.4.1.jar
2015-07-28 09:50:18,412 INFO [http-8443-7] org.apache.axis2.deployment.ModuleDeployer: Deploying module: addressing - file:/srv/tomcat/webapps/MyApp/WEB-INF/lib/axis2-1.4.1.jar
2015-07-28 09:50:18,513 INFO [http-8443-7] org.apache.axis2.deployment.ModuleDeployer: Deploying module: addressing - file:/srv/tomcat/webapps/MyApp/WEB-INF/lib/axis2-1.4.1.jar
2015-07-28 09:50:18,612 INFO [http-8443-7] org.apache.axis2.deployment.ModuleDeployer: Deploying module: addressing - file:/srv/tomcat/webapps/MyApp/WEB-INF/lib/axis2-1.4.1.jar
2015-07-28 09:50:18,713 INFO [http-8443-7] org.apache.axis2.deployment.ModuleDeployer: Deploying module: addressing - file:/srv/tomcat/webapps/MyApp/WEB-INF/lib/axis2-1.4.1.jar
2015-07-28 09:50:18,814 INFO [http-8443-7] org.apache.axis2.deployment.ModuleDeployer: Deploying module: addressing - file:/srv/tomcat/webapps/MyApp/WEB-INF/lib/axis2-1.4.1.jar
现在,我对axis2一无所知,对Tomcat知之甚少。但是,日志消息听起来像是这个jar文件被反复加载(这通常是一件坏事)。
我的问题