Java struts2图像插件无法在struts 2.3.16.1版本中加载

Java struts2图像插件无法在struts 2.3.16.1版本中加载,java,jsp,tomcat,struts2,Java,Jsp,Tomcat,Struts2,我已通过web应用程序中的升级将struts 2.0升级到2.3.16.1 在tomcat服务器中部署后,会出现以下错误: Unable to load configuration. - bean - jar:file:/C:/Projects/apache-tomcat-7.0.50/webapps/myweb/WEB-INF/lib/struts2-image-plugin-0.1.jar!/struts-plugin.xml:8:136 ... Caused by: Unable to

我已通过web应用程序中的升级将struts 2.0升级到2.3.16.1 在tomcat服务器中部署后,会出现以下错误:

Unable to load configuration. - bean - jar:file:/C:/Projects/apache-tomcat-7.0.50/webapps/myweb/WEB-INF/lib/struts2-image-plugin-0.1.jar!/struts-plugin.xml:8:136
...

Caused by: Unable to load configuration. - bean - jar:file:/C:/Projects/apache-tomcat-7.0.50/webapps/myweb/WEB-INF/lib/struts2-image-plugin-0.1.jar!/struts-plugin.xml:8:136
    at com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration(ConfigurationManager.java:58)
    at org.apache.struts2.dispatcher.Dispatcher.init_PreloadConfiguration(Dispatcher.java:445)
    at org.apache.struts2.dispatcher.Dispatcher.init(Dispatcher.java:489)

Caused by: Unable to load bean: type:org.apache.struts2.views.TagLibrary class:com.aurifa.struts2.plugin.image.views.ImageTagLibrary - bean - jar:file:/C:/Projects/apache-tomcat-7.0.50/webapps/myweb/WEB-INF/lib/struts2-image-plugin-0.1.jar!/struts-plugin.xml:8:136
    at com.opensymphony.xwork2.config.providers.XmlConfigurationProvider.register(XmlConfigurationProvider.java:224)
    at org.apache.struts2.config.StrutsXmlConfigurationProvider.register(StrutsXmlConfigurationProvider.java:102)
    at com.opensymphony.xwork2.config.impl.DefaultConfiguration.reloadContainer(DefaultConfiguration.java:169)
    at com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration(ConfigurationManager.java:55)
我更新了所有与struts相关的插件,但找不到任何版本更新struts2图像插件

是否有任何替代struts2图像插件的方法来解决此问题


感谢任何人提供解决方案或想法。

查看以下struts2 jira:

TagLibrary
接口已从struts2中删除,并由另外两个接口替换。(我不确定是否会在2.3.17中重新阅读)


如果你觉得勇敢,或者降级到2.3.15.3,并希望接口在2.3.17中恢复,你可以自己更新插件以使用新接口。

是的,类已被拆分,struts2 jquery plugin<3.7.0:@tom我可以通过实现另外两个接口来解决定制TagLibrary类的问题,感谢您的响应。很高兴您修复了应用程序,因为升级很重要,因为新版本的struts2中有很多安全修复。