Reputation: 125
We are currently migrating our struts application from 6.3.0.2 to 6.7.0
While starting the IBM websphere server, we are getting the issue below
Exception caught while initializing context : {0} java.lang.abstractmethoderror: org/apache/tiles/web/startup/AbstractTilesListener.createTilesInitializer()Lorg/apache/tiles/startup/TilesInitializer
We have below jars as part of maven pom.xml config
struts2-core-6.7.0
struts2-tiles-plugin-6.7.0
tiles-servlet-3.0.8
tiles-jsp-3.0.8
tiles-api-3.0.8
tiles-compat-3.0.8
web.xml has below entry as well which is extending the AbstractTilesListener class and overriding the method createTilesInitializer()
<listener>
<listener-class>
org.apache.struts2.tiles.StrutsTilesListener
</listener-class>
</listener>
Could someone help on this issue?
Upvotes: 0
Views: 112