jars added to WEB-INF/lib doesn't get recognized when I try to import them : says the package doesn't exist

拈花ヽ惹草 提交于 2019-12-31 03:04:53

问题


I have added org.apache.commons.fileupload and org.apache.commons.io package into the WEB-INF/lib directory of my project based on google appengine. But when I try importing in the servlet files the compiler/IDE gives an error that this package doesn't exist. Why is that ?

The jar files added :

What can be the reason I am getting this error ? What should I do to solve this problem ?


回答1:


You might also have to add them to your project's classpath.

for eclipse:

Right click the jar, select build path and add it to the build path, then try again.

for netbeans:

in the project properties window click libraries in the left panel. In the right panel add it to the compile classpath




回答2:


General solution , whenever you get package does not exist then there are 2 things, 1- Its not at all present 2) its present but still the error is thrown. The solution to this is to just add the jar to the classpath [so that your app finds it during compilation,execution)

I would suggest you to try Maven . Maven is a nice way by which you can organize this in a systematic way.




回答3:


If the IDE gives the problem then update the jars in IDE project class path :)



来源:https://stackoverflow.com/questions/11807395/jars-added-to-web-inf-lib-doesnt-get-recognized-when-i-try-to-import-them-say

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!