WSO2 Application server can be use to deploy web applications and services. For some advance use cases we might need to handle deployment tasks and post deployment tasks. There can be listeners defined globally in repository/conf/tomcat/web.xml to achieve this as follows.
When we deploy web application to WSO2 Application Server sometimes class loading environment can be changed. To fix this we can deploy the webapp with "Carbon" class loading environment. For some use cases we are shipping CXF/Spring dependencies within the web application so any class loader environment other than "CXF" might fail.
To fix this we need to add file named webapp-classloading.xml to META-INF. Then content should be as follows.
<listener> <listener-class>com.test.task.handler.DeployEventGenerator</listener-class> </listener>
When we deploy web application to WSO2 Application Server sometimes class loading environment can be changed. To fix this we can deploy the webapp with "Carbon" class loading environment. For some use cases we are shipping CXF/Spring dependencies within the web application so any class loader environment other than "CXF" might fail.
To fix this we need to add file named webapp-classloading.xml to META-INF. Then content should be as follows.
<Classloading xmlns="http://wso2.org/projects/as/classloading"> <Environments>Carbon</Environments> </Classloading>