Java Model Exception: Java Model Status [<parent POM project name here> does not exist]
See original GitHub issue[provide a description of the issue]
Environment
- JDK version: GraalVM-8 for project, GraalVM-11 for JDT extension.
- Java Language Server extension version: 0.81.0
- Extension Pack for Java version: 0.18.4
- Visual Studio Code version:
Version: 1.60.0 (system setup)
Commit: e7d7e9a9348e6a8cc8c03f877d39cb72e5dfb1ff
Date: 2021-09-01T10:41:52.311Z
Electron: 13.1.8
Chrome: 91.0.4472.164
Node.js: 14.16.0
V8: 9.1.269.39-electron.0
OS: Windows_NT x64 10.0.19043
-
This is running on a SSH remote environment - not sure if it happens locally or not since we don’t have such setup.
-
Remote OS: Oracle Linux 8.
-
Java related settings in VSCode (remote):
"java.completion.guessMethodArguments": true,
"java.configuration.runtimes": [
{
"name": "JavaSE-1.8",
"path": "/home/opc/.local/jdk",
"default": true
}
],
"java.debug.settings.console": "internalConsole",
"java.dependency.packagePresentation": "hierarchical",
"java.dependency.showMembers": true,
"java.home": "/home/opc/.local/graalvm-ce-java11",
"java.implementationsCodeLens.enabled": true,
"java.project.referencedLibraries": [
"**/target/**/*.class",
"/home/opc/.ivy2/cache/**/*.jar",
"/home/opc/.m2/repository/**/*.jar"
],
"java.referencesCodeLens.enabled": true,
Steps To Reproduce
- Have a parant POM project whose
pom.xml
looks like:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>parent-example</artifactId>
<version>0.1.6</version>
<packaging>pom</packaging>
<modules>
<module>common</module>
<module>service1</module>
<module>service2</module>
<module>service3</module>
</modules>
</project>
where
common
is a non-Spring simple Maven project;service*
are all Spring projects.
- in of the the
service*
project, hold [Ctrl] and click on a class name.
Current Result
The editor keeps thinking for about 1~2 minutes, then write following message 10x times in the output:
[Error - 9:13:06 PM] Sep 2, 2021, 9:13:06 PM Problems occurred when invoking code from plug-in: "org.eclipse.jdt.ls.core".
parent-example does not exist
Java Model Exception: Java Model Status [parent-example does not exist]
at org.eclipse.jdt.internal.core.JavaElement.newNotPresentException(JavaElement.java:574)
at org.eclipse.jdt.internal.core.JavaModelManager.getPerProjectInfoCheckExistence(JavaModelManager.java:2503)
at org.eclipse.jdt.internal.core.JavaProject.getPerProjectInfo(JavaProject.java:2382)
at org.eclipse.jdt.internal.core.JavaProject.getRawClasspath(JavaProject.java:2425)
at org.eclipse.jdt.launching.JavaRuntime.getVMInstall(JavaRuntime.java:418)
at org.eclipse.jdt.ls.core.internal.commands.ProjectCommand.getProjectSettings(ProjectCommand.java:96)
at org.eclipse.jdt.ls.core.internal.JDTDelegateCommandHandler.executeCommand(JDTDelegateCommandHandler.java:78)
at org.eclipse.jdt.ls.core.internal.handlers.WorkspaceExecuteCommandHandler$1.run(WorkspaceExecuteCommandHandler.java:215)
at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:45)
at org.eclipse.jdt.ls.core.internal.handlers.WorkspaceExecuteCommandHandler.executeCommand(WorkspaceExecuteCommandHandler.java:205)
at org.eclipse.jdt.ls.core.internal.handlers.JDTLanguageServer.lambda$4(JDTLanguageServer.java:505)
at org.eclipse.jdt.ls.core.internal.BaseJDTLanguageServer.lambda$0(BaseJDTLanguageServer.java:75)
at java.base/java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:642)
at java.base/java.util.concurrent.CompletableFuture$Completion.exec(CompletableFuture.java:479)
at java.base/java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:290)
at java.base/java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1020)
at java.base/java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1656)
at java.base/java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1594)
at java.base/java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:183)
Expected Result
It should just jump the the class definition being clicked.
Additional Informations
This happens intermittently. Sometime it works, sometime it doesn’t.
When it doesn’t work, even cleaning Java workspace doesn’t help.
Sometime it doesn’t work right after cleaning Java workspace for other reasons.
There is no clear pattern on how this happens. It’s hard to capture the exact steps.
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (1 by maintainers)
Top Results From Across the Web
Java Model Status [gen [in MyApp] does not exist] after ...
The actual problem was that renaming the package name from the manifest file didn't work as expected. I thought it would change everything...
Read more >Maven's Non-resolvable parent POM Problem
This means that the project the Nosheen is trying to get to compile has a parent project called "com.mycompany.samples:biometrics-samples:pom" ...
Read more >Project - Gradle DSL Version 7.6
A project has 5 property 'scopes', which it searches for properties. You can access these properties by name in your build file, or...
Read more >3 ways to solve java.lang.NoClassDefFoundError in Java ...
This will result in java.lang.NoClassDefFoundError for User class. Also, If the class is present in both JAR file and you will call equals...
Read more >Building applications with Maven
From inside a Quarkus project, you can obtain a list of the available ... This can either be a fully qualified name of...
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
The “Java Model Exception” has been fixed by PR https://github.com/eclipse/eclipse.jdt.ls/pull/1865. It will be included in next version of vscode-java extension. You can also try the CI build to verify it. If Go-To-Definition issue still persists, we need more information to find the root cause.
I haven’t seen the issue happening recently. I guess we can close this one for now. I will report again if it still happens.