Неустранимая ошибка при запуске интеграции Plexus-Struts - PullRequest
0 голосов
/ 08 ноября 2019

Сначала я пытаюсь обновить свое веб-приложение в стойках 2.0.6 jdk6 до распорок 2.5.20 jdk 11. Через несколько дней я столкнулся с проблемой, которую не понимаю. Я обновляю зависимость struts2-plexus-plugin, но при запуске консоль говорит:

FATAL org.apache.struts2.plexus.PlexusObjectFactory - ********** FATAL 
ERROR STARTING UP PLEXUS-STRUTS INTEGRATION **********
Looks like the Plexus listener was not configured for your web app! 
You need to add the following to web.xml: 

<!-- this should be before the Struts filter -->
<filter>
    <filter-name>plexus</filter-name>
    <filter-class>org.apache.struts2.plexus.PlexusFilter</filter-class>
</filter>
...
<!-- this should be before the Struts filter -->
<filter-mapping>
    <filter-name>plexus</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>
... 
<listener>
    <listener- 
class>org.apache.struts2.plexus.PlexusLifecycleListener</listener-class>
</listener>

Я изменил свой web.xml, добавив эти строки в начале, но абсолютно ничего не изменилось, явсе еще получаю ошибку. Почему я делаю не так?

...