fresh learner
fresh learner

Reputation: 467

Trouble importing org.apache.commons.lang on JSP page

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.

enter image description here

Things i did were:

Nothing solved my problem. Any suggestion?

Upvotes: 0

Views: 1915

Answers (1)

mavroprovato
mavroprovato

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

Related Questions