gigaZhang / struts2-jquery

Automatically exported from code.google.com/p/struts2-jquery
0 stars 0 forks source link

java.lang.ClassNotFoundException: org.apache.commons.lang.xwork.StringUtils with xwork-core-2.3.14 #977

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
(This is for feature requests and bugs in Struts2 jQuery Plugin - for
getting help, please use the User Group.
http://groups.google.com/group/struts2-jquery )

What steps will reproduce the problem?
1. use struts2-core-all API
2. Try to populate a grid with JSON data
3. Data populated in JsonAction but on console getting the classnot found 
exception.

What is the expected output? What do you see instead?
Data should be populated.

Which struts2 version?
struts-2.3.14-all

Which struts2-jquery plugin version?

Please provide any additional information below.

Original issue reported on code.google.com by amey.meh...@gmail.com on 8 May 2013 at 3:50

Attachments:

GoogleCodeExporter commented 9 years ago
If it is a maven Project you can fix it by adding a dependency for commons-lang:

<dependencies>
...
        <dependency>
            <groupId>commons-lang</groupId>
            <artifactId>commons-lang</artifactId>
            <version>2.6</version>
        </dependency>
</dependencies>

Original comment by osah...@gmail.com on 22 May 2013 at 7:30

GoogleCodeExporter commented 9 years ago
Its not a maven project

Original comment by amey.meh...@gmail.com on 29 May 2013 at 3:54

GoogleCodeExporter commented 9 years ago
This looks more like a project specific problem. Please correct your 
dependencies.
Good way for dothat is maven. :-)

Original comment by johgep on 1 Jun 2013 at 8:52