IllegalArgumentException: UT010011 при запуске wildfly 14 со стойками 2.3, Java 8 - PullRequest
0 голосов
/ 26 сентября 2018

Я пытаюсь развернуть свое приложение, используя wildfly 14 и стойки 2.3, но при запуске wildfly я получаю следующее исключение

12:11:05,540 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed to start service jboss.deployment.subunit."MyProject-app.ear"."MyProject-web-1.0.war".undertow-deployment.UndertowDeploymentInfoService: org.jboss.msc.service.StartException in service jboss.deployment.subunit."MyProject-app.ear"."MyProject-web-1.0.war".undertow-deployment.UndertowDeploymentInfoService: Failed to start service
at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1728)
at org.jboss.msc.service.ServiceControllerImpl$ControllerTask.run(ServiceControllerImpl.java:1556)
at org.jboss.threads.ContextClassLoaderSavingRunnable.run(ContextClassLoaderSavingRunnable.java:35)
at org.jboss.threads.EnhancedQueueExecutor.safeRun(EnhancedQueueExecutor.java:1985)
at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.doRunTask(EnhancedQueueExecutor.java:1487)
at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1364)
at java.lang.Thread.run(Thread.java:745)

Caused by: java.lang.IllegalArgumentException: UT010011: Filter struts2 of type class org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter does not implement javax.servlet.Filter
at io.undertow.servlet.api.FilterInfo.<init>(FilterInfo.java:74)
at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.createServletConfig(UndertowDeploymentInfoService.java:811)
at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.start(UndertowDeploymentInfoService.java:275)
at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1736)
at org.jboss.msc.service.ServiceControllerImpl$StartTask.execute(ServiceControllerImpl.java:1698)
... 6 more

В моем файле web.xml есть следующая запись

<filter>
    <filter-name>struts2</filter-name>
    <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>
    <init-param>
        <param-name>struts.enable.DynamicMethodInvocation</param-name>
        <param-value>false</param-value>
    </init-param>
    <init-param>
            <param-name>hstsEnabled</param-name>
            <param-value>true</param-value>
    </init-param>  
    <init-param>
            <param-name>maxAgeSeconds</param-name>
            <param-value>31536000</param-value>
    </init-param>
    <init-param>
            <param-name>includeSubDomains</param-name>
            <param-value>true</param-value>
    </init-param>
</filter> 
<filter-mapping>
    <filter-name>struts2</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

Я использую следующие jar-файлы в моей библиотеке

  1. struts2-Convention-plugin-2.3.34
  2. struts2-core-2.3.34
  3. struts2-dojo-plugin-2.3.34
  4. struts2-jfreechart-plugin-2.3.34
  5. struts2-rest-plugin-2.3.34
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...