Cannot find the class file for javax.servlet.http.HttpServletResponse.
See original GitHub issue- Operating System: Ubuntu 20.04
- JDK version: openjdk 11.0.11
- Visual Studio Code version: 1.60.1
- Java extension version: v0.82.0
I have a java project that uses gradle. This project worked well with the java extension for a long time.
Now, when I run ‘./gradlew assemble’ from the command line, the project builds successfully.
When I load the project in VSCode I get the following errors…
{
"resource": "/myproj//java_server",
"owner": "_generated_diagnostic_collection_name_#1",
"code": "0",
"severity": 8,
"message": "The project was not built since its build path is incomplete. Cannot find the class file for javax.servlet.http.HttpServletResponse. Fix the build path then try building this project",
"source": "Java",
"startLineNumber": 1,
"startColumn": 1,
"endLineNumber": 1,
"endColumn": 1
}
{
"resource": "/myproj/java_server/src/main/java/framework/MessageHandler.java",
"owner": "_generated_diagnostic_collection_name_#1",
"code": "16777540",
"severity": 8,
"message": "The type javax.servlet.http.HttpServletResponse cannot be resolved. It is indirectly referenced from required .class files",
"source": "Java",
"startLineNumber": 1,
"startColumn": 1,
"endLineNumber": 1,
"endColumn": 2
}
Issue Analytics
- State:
- Created 2 years ago
- Comments:13 (4 by maintainers)
Top Results From Across the Web
Build path is incomplete. Cannot find class file for javax/servlet ...
Application seems to be missing one of the jars from servlet-api.jar , jsp-api.jar , el-api.jar , j2ee.jar , javaee.jar . And you don't...
Read more >Cannot find the class file for javax.servlet.http ...
1) This compilation unit indirectly references the missing type javax.servlet.http.HttpServletRequest (typically some required class file is ...
Read more >[Solved] The superclass "javax.servlet.http.HttpServlet" was ...
If you are facing this error after importing an existing maven project into your eclipse IDE, then it means that http-servlet is not...
Read more >[Solved] HttpServlet cannot be resolved to a type - CodeJava.net
The reason is the Java Servlet API is missing in the project's classpath. You can solve this problem by specifying a server runtime...
Read more >Cannot find class file javax.servlet.http.HttpServletResponse
Cannot find class file javax.servlet.http.HttpServletResponse ... Hi,. I'm running SAP EP6.0 SP13. I'm developing a new portal application in NWDS. My application ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Works for me
Can you retry the project with the latest release,
v1.1.0
. The errors disappear for me every time I update to the newer release.