The problem seems silly because I properly misunderstood the document. Basically I just want to run the hello-world actionless example according to this instruction by simply adding hello.jsp file into WEB-INF/content and then running localhost:8080/test/hello, but Struts keeps showing the exception java.lang.NoSuchMethodException: com.opensymphony.xwork2.ActionSupport.index().
So I wonder there is any configuration need to be done before running. I couldn't find any thing about configuration for hello-world example.
Could anyone suggest me correct way ? Thanks
Updated: here is project tree, no action, no any fancy.
├── pom.xml
└── src
└── main
├── resources
│ └── struts.xml
└── webapp
├── WEB-INF
│ ├── content
│ │ └── hello.jsp
│ └── web.xml
└── index.jsp
The dependencies in pom.xml
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-core</artifactId>
<version>2.3.8</version>
</dependency>
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-rest-plugin</artifactId>
<version>2.3.8</version>
</dependency>
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-convention-plugin</artifactId>
<version>2.3.8</version>
</dependency>
<dependency>
<groupId>org.apache.struts</groupId>
<artifactId>struts2-config-browser-plugin</artifactId>
<version>2.3.8</version>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1.26</version>
</dependency>