Exception starting filter struts2 Unable to load configuration. - bean

前端 未结 1 1429
南旧
南旧 2021-01-15 03:27

Hi I am new in Struts and trying to hello world in struts but I got error. I am trying to fixed it out but unable to do. The error message is

EVERE: Excepti         


        
相关标签:
1条回答
  • 2021-01-15 03:36

    Remove struts2-portlet-plugin-2.3.28.jar from the classpath. But for the solution to manage libraries you can use Maven.

    See the tutorial that is built with Maven: Create Struts 2 Web Application Using Maven To Manage Artifacts and To Build The Application.

    The minimal dependencies downloaded with

    <dependency>
        <groupId>org.apache.struts</groupId>
        <artifactId>struts2-core</artifactId>
        <version>2.3.28</version>
    </dependency>
    
    0 讨论(0)
提交回复
热议问题