简体   繁体   中英

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.

在此处输入图片说明

Things i did were:

  • Download the packages and add them to the WEB-INF/lib folder
  • Imported but it still showed me the error
  • Restarted server
  • Cleaned project several times
  • Closed eclipse and back on

Nothing solved my problem. Any suggestion?

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM