Reputation: 467
I'm having trouble importing the org.apache.commons.lang.StringEscapeUtils which gives me the error: The import org.apache.commons.lang cannot be resolved I know this question has been posted a number of times but i tried them and it didnt solve my problem.
Things i did were:
WEB-INF/lib
folderNothing solved my problem. Any suggestion?
Upvotes: 0
Views: 1915
Reputation: 8372
You are using version 3 of Apache Commons Lang. The correct import is:
org.apache.commons.lang3.StringEscapeUtils
Note the lang3 part of the path
Upvotes: 1