redhat-developer / redhat-developer/vscode-java

Migrating from idea, the compile time JDK version cannot be specified correctly

Open
#2,599 1 comment 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

preferences runtime
Dominant language
TypeScript
Stars
2.3k
Forks
546
Avg merge
20h 1m
Merged PRs (30d)
11

Description

hi,I'm a rookie in Java. When I try to migrate the historical project from idea to vscode, I send java.configuration Runtimes didn't take effect. The project was always started with Java 17, and there were some configuration problems that I couldn't handle
I need help, thanks

Environment
  • Operating System: apple M1 pro
  • JDK version: 1.8
  • Visual Studio Code version: 1.69.2
  • Java extension version: v0.25.0 - Extension Pack for Java
Steps To Reproduce
image

setting:

{
    "java.configuration.updateBuildConfiguration": "automatic",
    "java.completion.filteredTypes": [
        "java.awt.*",
        "com.sun.*",
        "sun.*",
        "jdk.*",
        "org.graalvm.*", 
        "io.micrometer.shaded.*"
    ],
    "maven.executable.path": "/Users/zhouyuan11/work/servers/apache-maven-3.6.3/bin/mvn",
    "maven.terminal.customEnv": [
        {
            "environmentVariable": "JAVA_HOME",
            "value": "/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home"
        }
    ],
    "java.configuration.runtimes": [
        {
            "name": "JavaSE-1.8",
            "path": "/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home",
            "default":  true
        }
    ],
    "java.jdt.ls.java.home": "/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home",
    "java.import.generatesMetadataFilesAtProjectRoot": true,
    "java.server.launchMode": "Standard",
    // "java.home":"/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home",
    "java.errors.incompleteClasspath.severity": "ignore",

    // "java.jdt.ls.java.home": "/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home",
    "remote.autoForwardPortsSource": "output",
    "java.import.gradle.home": "/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home",
    "java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -javaagent:\"/Users/zhouyuan11/.vscode/extensions/vscjava.vscode-lombok-1.0.1/server/lombok.jar\""
    // "spring-boot.ls.java.home": "/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home",
}

run log :

!SESSION 2022-07-29 10:34:33.775 -----------------------------------------------
eclipse.buildId=unknown
java.version=17.0.3
java.vendor=Eclipse Adoptium
BootLoader constants: OS=macosx, ARCH=aarch64, WS=cocoa, NL=zh_CN_#Hans
Command-line arguments:  -data /Users/zhouyuan11/Library/Application Support/Code/User/workspaceStorage/1b8e5a3f93ea059da49b0e9499823f27/redhat.java/jdt_ws

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:34.697
!MESSAGE class org.eclipse.jdt.ls.core.internal.JavaLanguageServerPlugin is started

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:34.790
!MESSAGE Main thread is waiting

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:34.911
!MESSAGE >> initialize

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:34.916
!MESSAGE Initializing Java Language Server 1.14.0.202207211349

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.846
!MESSAGE Default VM Install changed from  null to net.java.openjdk.jdk-/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.857
!MESSAGE Setting runtime JavaSE-1.8-/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home as default global VM

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.861
!MESSAGE Default VM Install changed from  net.java.openjdk.jdk-/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home to com.oracle.java.8u333.jdk-/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.870
!MESSAGE Setting /Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home as 'JavaSE-1.8' environment (id:com.oracle.java.8u333.jdk)

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.874
!MESSAGE JVM Runtimes changed, saving new configuration

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.893
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.898
!MESSAGE Non-Static Commands: [java.edit.organizeImports, java.project.refreshDiagnostics, java.project.import, java.navigate.openTypeHierarchy, java.project.removeFromSourcePath, java.project.listSourcePaths, java.project.resolveStackTraceLocation, java.project.getAll, java.project.isTestFile, java.project.getClasspaths, java.navigate.resolveTypeHierarchy, java.edit.stringFormatting, java.project.getSettings, java.project.updateSourceAttachment, java.project.resolveWorkspaceSymbol, java.project.upgradeGradle, java.project.resolveSourceAttachment, java.project.addToSourcePath]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.900
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.903
!MESSAGE Non-Static Commands: [java.intellicode.completion, java.intellicode.completion.resolve, java.intellicode.enable]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.907
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.909
!MESSAGE Non-Static Commands: [vscode.java.checkProjectSettings, vscode.java.isOnClasspath, vscode.java.fetchUsageData, vscode.java.validateLaunchConfig, vscode.java.resolveInlineVariables, vscode.java.resolveClassFilters, vscode.java.resolveMainMethod, vscode.java.resolveClasspath, vscode.java.resolveBuildFiles, vscode.java.resolveMainClass, vscode.java.updateDebugSettings, vscode.java.resolveSourceUri, vscode.java.fetchPlatformSettings, vscode.java.buildWorkspace, vscode.java.startDebugSession, vscode.java.inferLaunchCommandLength, vscode.java.resolveElementAtSelection, vscode.java.resolveJavaExecutable]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.919
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.924
!MESSAGE Non-Static Commands: [java.maven.initializeSearcher, java.maven.searchArtifact, java.maven.addDependency, java.maven.controlContext]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.927
!MESSAGE Static Commands: [sts.java.addClasspathListener, sts.java.removeClasspathListener]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.931
!MESSAGE Non-Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.934
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.936
!MESSAGE Non-Static Commands: [sts.java.javadoc]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.940
!MESSAGE Static Commands: [sts.java.type]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.943
!MESSAGE Non-Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.945
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.950
!MESSAGE Non-Static Commands: [sts.java.javadocHoverLink]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.952
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.957
!MESSAGE Non-Static Commands: [sts.java.location]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.961
!MESSAGE Static Commands: [sts.java.search.packages, sts.java.search.types]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.965
!MESSAGE Non-Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.968
!MESSAGE Static Commands: [sts.java.hierarchy.supertypes, sts.java.hierarchy.subtypes]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.974
!MESSAGE Non-Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.976
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.977
!MESSAGE Non-Static Commands: [sts.java.code.completions]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.978
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.980
!MESSAGE Non-Static Commands: [java.project.refreshLib, java.project.list, java.project.generateJar, java.project.getMainClasses, java.getPackageData, java.resolvePath]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.981
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.982
!MESSAGE Non-Static Commands: [vscode.java.test.findJavaProjects, vscode.java.test.findTestPackagesAndTypes, vscode.java.test.findTestTypesAndMethods, vscode.java.test.resolvePath, vscode.java.test.findTestLocation, vscode.java.test.get.testpath, vscode.java.test.findDirectTestChildrenForClass, vscode.java.test.navigateToTestOrTarget, vscode.java.test.junit.argument, vscode.java.test.generateTests]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:35.990
!MESSAGE Wait for AutoBuildOffJob start

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:36.008
!MESSAGE Wait for AutoBuildOffJob end 13ms

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:36.011
!MESSAGE Starting org.eclipse.m2e.core

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:36.020
!MESSAGE Started org.eclipse.m2e.core 3ms

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:36.026
!MESSAGE ProjectRegistryRefreshJob finished 0ms

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:36.032
!MESSAGE Starting org.eclipse.buildship.core

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:36.043
!MESSAGE Started org.eclipse.buildship.core 15ms

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:36.066
!MESSAGE LoadingGradleVersionJob finished 11ms

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:36.078
!MESSAGE Creating the Java project jdt.ls-java-project

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:36.079
!MESSAGE >> initialized

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:36.158
!MESSAGE Finished creating the Java project jdt.ls-java-project

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:36.267
!MESSAGE Importing Maven project(s)

!ENTRY org.eclipse.jdt.ls.core 4 0 2022-07-29 10:34:38.774
!MESSAGE Initialization failed 
!STACK 1
org.eclipse.core.runtime.CoreException: Failed to import projects
	at org.eclipse.jdt.ls.core.internal.managers.ProjectsManager.importProjects(ProjectsManager.java:161)
	at org.eclipse.jdt.ls.core.internal.managers.ProjectsManager.initializeProjects(ProjectsManager.java:111)
	at org.eclipse.jdt.ls.core.internal.handlers.InitHandler$1.runInWorkspace(InitHandler.java:244)
	at org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:43)
	at org.eclipse.core.internal.jobs.Worker.run(Worker.java:63)
Contains: Cannot nest 'alarm-utils/src/main/java' inside 'alarm-utils/src'. To enable the nesting exclude 'main/' from 'alarm-utils/src'
!SUBENTRY 1 org.eclipse.jdt.ls.core 4 -1 2022-07-29 10:34:38.774
!MESSAGE Failed to import projects
!SUBENTRY 2 org.eclipse.jdt.core 4 964 2022-07-29 10:34:38.774
!MESSAGE Cannot nest 'alarm-utils/src/main/java' inside 'alarm-utils/src'. To enable the nesting exclude 'main/' from 'alarm-utils/src'

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:38.809
!MESSAGE >> initialization job finished

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:38.815
!MESSAGE >> workspace/didChangeConfiguration

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:38.826
!MESSAGE >> java/buildWorkspace (incremental)

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:38.834
!MESSAGE >> New configuration: {java={home=/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home, jdt={ls={java={home=/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home}, vmargs=-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -javaagent:"/Users/zhouyuan11/.vscode/extensions/vscjava.vscode-lombok-1.0.1/server/lombok.jar", lombokSupport={enabled=true}}}, errors={incompleteClasspath={severity=ignore}}, configuration={checkProjectSettingsExclusions=false, updateBuildConfiguration=automatic, maven={userSettings=/Users/zhouyuan11/work/settings.xml, globalSettings=null, notCoveredPluginExecutionSeverity=warning}, workspaceCacheLimit=90.0, runtimes=[{name=JavaSE-1.8, path=/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home, default=true}]}, trace={server=off}, import={maven={enabled=true}, gradle={enabled=true, wrapper={enabled=true}, version=null, home=/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home, java={home=null}, offline={enabled=false}, arguments=null, jvmArguments=null, user={home=/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home}}, exclusions=[**/node_modules/**, **/.metadata/**, **/archetype-resources/**, **/META-INF/maven/**], generatesMetadataFilesAtProjectRoot=true}, maven={downloadSources=false, updateSnapshots=false}, eclipse={downloadSources=false}, referencesCodeLens={enabled=false}, signatureHelp={enabled=false, description={enabled=false}}, implementationsCodeLens={enabled=false}, format={enabled=true, settings={url=null, profile=null}, comments={enabled=true}, onType={enabled=true}, insertSpaces=true, tabSize=4.0}, saveActions={organizeImports=false}, project={referencedLibraries=[lib/**/*.jar], importOnFirstTimeStartup=automatic, importHint=true, resourceFilters=[node_modules, .git], encoding=ignore, exportJar={targetPath=${workspaceFolder}/${workspaceFolderBasename}.jar}}, contentProvider={preferred=null}, autobuild={enabled=true}, maxConcurrentBuilds=1.0, recommendations={dependency={analytics={show=true}}}, completion={maxResults=0.0, enabled=true, guessMethodArguments=false, favoriteStaticMembers=[org.junit.Assert.*, org.junit.Assume.*, org.junit.jupiter.api.Assertions.*, org.junit.jupiter.api.Assumptions.*, org.junit.jupiter.api.DynamicContainer.*, org.junit.jupiter.api.DynamicTest.*, org.mockito.Mockito.*, org.mockito.ArgumentMatchers.*, org.mockito.Answers.*], filteredTypes=[java.awt.*, com.sun.*, sun.*, jdk.*, org.graalvm.*, io.micrometer.shaded.*], importOrder=[java, javax, org, com]}, foldingRange={enabled=true}, progressReports={enabled=true}, codeGeneration={hashCodeEquals={useJava7Objects=false, useInstanceof=false}, useBlocks=false, generateComments=false, toString={template=${object.className} [${member.name()}=${member.value}, ${otherMembers}], codeStyle=STRING_CONCATENATION, skipNullValues=false, listArrayContents=true, limitElements=0.0}, insertionLocation=afterCursor}, selectionRange={enabled=true}, showBuildStatusOnStart={enabled=notification}, server={launchMode=Standard}, sources={organizeImports={starThreshold=99.0, staticStarThreshold=99.0}}, imports={gradle={wrapper={checksums=[]}}}, templates={fileHeader=[], typeComment=[]}, references={includeAccessors=true, includeDecompiledSources=true}, typeHierarchy={lazyLoad=false}, settings={url=null}, symbols={includeSourceMethodDeclarations=false}, quickfix={showAt=line}, inlayHints={parameterNames={enabled=literals, exclusions=[]}}, debug={logLevel=warn, settings={showHex=false, showStaticVariables=false, showQualifiedNames=false, showLogicalStructure=true, showToString=true, maxStringLength=0.0, numericPrecision=0.0, hotCodeReplace=manual, enableRunDebugCodeLens=true, forceBuildBeforeLaunch=true, onBuildFailureProceed=false, console=integratedTerminal, exceptionBreakpoint={skipClasses=[]}, stepping={skipClasses=[], skipSynthetics=false, skipStaticInitializers=false, skipConstructors=false}, jdwp={limitOfVariablesPerJdwpRequest=100.0, requestTimeout=3000.0}, vmArgs=}}, silentNotification=false, dependency={showMembers=false, syncWithFolderExplorer=true, autoRefresh=true, refreshDelay=2000.0, packagePresentation=flat}, help={firstView=auto, showReleaseNotes=true, collectErrorLog=false}, test={defaultConfig=, config={}}}}

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:38.844
!MESSAGE >> workspace/executeCommand java.project.list

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:38.899
!MESSAGE >> workspace/executeCommand java.getPackageData

!ENTRY org.eclipse.jdt.ls.core 4 0 2022-07-29 10:34:41.332
!MESSAGE Error occured while building workspace. Details: 
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-dao;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-dao/src/main/java/com/jd/ads/dao/alarmback/config/DataSourceAspect.java; line: 1
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-entity;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-entity/src/main/java/com/jd/ads/alarmback/bo/jdq/JdqAlarmRecordDetail.java; line: 1
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-utils;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-utils/src/main/java/com/jd/ads/alarmback/constants/AggregateType.java; line: 1

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:41.363
!MESSAGE >> build jobs finished

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:41.427
!MESSAGE >> registerWatchers'

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:41.440
!MESSAGE >> registerFeature 'workspace/didChangeWatchedFiles'

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:41.446
!MESSAGE >> watchers registered

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:41.461
!MESSAGE >> workspace/executeCommand java.project.getAll

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:41.474
!MESSAGE >> workspace/executeCommand java.project.getAll

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:41.484
!MESSAGE >> workspace/executeCommand vscode.java.test.get.testpath

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:41.490
!MESSAGE >> workspace/executeCommand java.project.listSourcePaths

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:41.494
!MESSAGE >> workspace/executeCommand java.project.list

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:41.498
!MESSAGE >> workspace/executeCommand java.project.getSettings

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:41.501
!MESSAGE >> workspace/executeCommand java.project.getClasspaths

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:43.627
!MESSAGE >> document/didOpen

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:43.635
!MESSAGE >> document/codeAction

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:43.654
!MESSAGE >> workspace/executeCommand java.maven.initializeSearcher

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:43.670
!MESSAGE >> document/documentSymbol

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:43.672
!MESSAGE >> workspace/executeCommand java.resolvePath

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:43.794
!MESSAGE >> textDocument/semanticTokens/full

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:43.852
!MESSAGE >> textDocument/inlayHint

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:43.858
!MESSAGE >> document/foldingRange

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:43.860
!MESSAGE >> document/codeAction

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:43.864
!MESSAGE >> workspace/executeCommand java.maven.initializeSearcher

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:43.876
!MESSAGE >> workspace/executeCommand vscode.java.resolveMainMethod

!ENTRY java-debug 1 0 2022-07-29 10:34:43.882
!MESSAGE Starting com.microsoft.java.debug.plugin

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:44.385
!MESSAGE >> workspace/executeCommand vscode.java.resolveMainMethod

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:44.438
!MESSAGE >> textDocument/inlayHint

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:45.267
!MESSAGE >> document/codeAction

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:45.280
!MESSAGE >> document/documentSymbol

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:45.284
!MESSAGE >> workspace/executeCommand vscode.java.updateDebugSettings

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:45.293
!MESSAGE >> java/buildWorkspace (incremental)

!ENTRY org.eclipse.jdt.ls.core 4 0 2022-07-29 10:34:45.307
!MESSAGE Error occured while building workspace. Details: 
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-dao;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-dao/src/main/java/com/jd/ads/dao/alarmback/config/DataSourceAspect.java; line: 1
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-entity;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-entity/src/main/java/com/jd/ads/alarmback/bo/jdq/JdqAlarmRecordDetail.java; line: 1
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-utils;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-utils/src/main/java/com/jd/ads/alarmback/constants/AggregateType.java; line: 1

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:45.312
!MESSAGE >> workspace/executeCommand sts.java.addClasspathListener

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:45.327
!MESSAGE >> document/hover

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:45.343
!MESSAGE >> java/findLinks

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:45.420
!MESSAGE >> textDocument/inlayHint

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:45.532
!MESSAGE >> workspace/executeCommand vscode.java.resolveMainMethod

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:47.801
!MESSAGE >> workspace/executeCommand vscode.java.resolveBuildFiles

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:50.080
!MESSAGE >> document/codeAction

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:50.112
!MESSAGE >> workspace/executeCommand java.resolvePath

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:50.118
!MESSAGE >> textDocument/inlayHint

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:50.257
!MESSAGE >> document/foldingRange

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:50.310
!MESSAGE >> document/codeAction

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:50.346
!MESSAGE >> workspace/executeCommand vscode.java.resolveMainMethod

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:56.511
!MESSAGE >> workspace/didChangeConfiguration

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:34:56.524
!MESSAGE >> New configuration: {java={home=/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home, jdt={ls={java={home=/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home}, vmargs=-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -javaagent:"/Users/zhouyuan11/.vscode/extensions/vscjava.vscode-lombok-1.0.1/server/lombok.jar", lombokSupport={enabled=true}}}, errors={incompleteClasspath={severity=ignore}}, configuration={checkProjectSettingsExclusions=false, updateBuildConfiguration=automatic, maven={userSettings=/Users/zhouyuan11/work/settings.xml, globalSettings=null, notCoveredPluginExecutionSeverity=warning}, workspaceCacheLimit=90.0, runtimes=[{name=JavaSE-1.8, path=/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home, default=true}]}, trace={server=off}, import={maven={enabled=true}, gradle={enabled=true, wrapper={enabled=true}, version=null, home=null, java={home=null}, offline={enabled=false}, arguments=null, jvmArguments=null, user={home=null}}, exclusions=[**/node_modules/**, **/.metadata/**, **/archetype-resources/**, **/META-INF/maven/**], generatesMetadataFilesAtProjectRoot=true}, maven={downloadSources=false, updateSnapshots=false}, eclipse={downloadSources=false}, referencesCodeLens={enabled=false}, signatureHelp={enabled=false, description={enabled=false}}, implementationsCodeLens={enabled=false}, format={enabled=true, settings={url=null, profile=null}, comments={enabled=true}, onType={enabled=true}, insertSpaces=true, tabSize=4.0}, saveActions={organizeImports=false}, project={referencedLibraries=[lib/**/*.jar], importOnFirstTimeStartup=automatic, importHint=true, resourceFilters=[node_modules, .git], encoding=ignore, exportJar={targetPath=${workspaceFolder}/${workspaceFolderBasename}.jar}}, contentProvider={preferred=null}, autobuild={enabled=true}, maxConcurrentBuilds=1.0, recommendations={dependency={analytics={show=true}}}, completion={maxResults=0.0, enabled=true, guessMethodArguments=false, favoriteStaticMembers=[org.junit.Assert.*, org.junit.Assume.*, org.junit.jupiter.api.Assertions.*, org.junit.jupiter.api.Assumptions.*, org.junit.jupiter.api.DynamicContainer.*, org.junit.jupiter.api.DynamicTest.*, org.mockito.Mockito.*, org.mockito.ArgumentMatchers.*, org.mockito.Answers.*], filteredTypes=[java.awt.*, com.sun.*, sun.*, jdk.*, org.graalvm.*, io.micrometer.shaded.*], importOrder=[java, javax, org, com]}, foldingRange={enabled=true}, progressReports={enabled=true}, codeGeneration={hashCodeEquals={useJava7Objects=false, useInstanceof=false}, useBlocks=false, generateComments=false, toString={template=${object.className} [${member.name()}=${member.value}, ${otherMembers}], codeStyle=STRING_CONCATENATION, skipNullValues=false, listArrayContents=true, limitElements=0.0}, insertionLocation=afterCursor}, selectionRange={enabled=true}, showBuildStatusOnStart={enabled=notification}, server={launchMode=Standard}, sources={organizeImports={starThreshold=99.0, staticStarThreshold=99.0}}, imports={gradle={wrapper={checksums=[]}}}, templates={fileHeader=[], typeComment=[]}, references={includeAccessors=true, includeDecompiledSources=true}, typeHierarchy={lazyLoad=false}, settings={url=null}, symbols={includeSourceMethodDeclarations=false}, quickfix={showAt=line}, inlayHints={parameterNames={enabled=literals, exclusions=[]}}, debug={logLevel=warn, settings={showHex=false, showStaticVariables=false, showQualifiedNames=false, showLogicalStructure=true, showToString=true, maxStringLength=0.0, numericPrecision=0.0, hotCodeReplace=manual, enableRunDebugCodeLens=true, forceBuildBeforeLaunch=true, onBuildFailureProceed=false, console=integratedTerminal, exceptionBreakpoint={skipClasses=[]}, stepping={skipClasses=[], skipSynthetics=false, skipStaticInitializers=false, skipConstructors=false}, jdwp={limitOfVariablesPerJdwpRequest=100.0, requestTimeout=3000.0}, vmArgs=}}, silentNotification=false, dependency={showMembers=false, syncWithFolderExplorer=true, autoRefresh=true, refreshDelay=2000.0, packagePresentation=flat}, help={firstView=auto, showReleaseNotes=true, collectErrorLog=false}, test={defaultConfig=, config={}}}}

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:35:12.995
!MESSAGE >> workspace/executeCommand java.resolvePath

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:47:20.287
!MESSAGE >> document/codeAction

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:47:20.313
!MESSAGE >> textDocument/inlayHint

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:47:20.338
!MESSAGE >> textDocument/inlayHint

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:47:20.402
!MESSAGE >> document/foldingRange

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:47:20.462
!MESSAGE >> document/codeAction

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:47:20.500
!MESSAGE >> workspace/executeCommand vscode.java.resolveMainMethod

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:47:22.351
!MESSAGE >> java/buildWorkspace (incremental)

!ENTRY org.eclipse.jdt.ls.core 4 0 2022-07-29 10:47:22.395
!MESSAGE Error occured while building workspace. Details: 
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-dao;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-dao/src/main/java/com/jd/ads/dao/alarmback/config/DataSourceAspect.java; line: 1
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-entity;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-entity/src/main/java/com/jd/ads/alarmback/bo/jdq/JdqAlarmRecordDetail.java; line: 1
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-utils;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-utils/src/main/java/com/jd/ads/alarmback/constants/AggregateType.java; line: 1

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:47:25.366
!MESSAGE >> workspace/executeCommand vscode.java.resolveBuildFiles

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:47:25.611
!MESSAGE >> workspace/executeCommand vscode.java.resolveMainMethod

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:28.767
!MESSAGE >> workspace/didChangeConfiguration

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:28.817
!MESSAGE >> New configuration: {java={home=/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home, jdt={ls={java={home=/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home}, vmargs=-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -javaagent:"/Users/zhouyuan11/.vscode/extensions/vscjava.vscode-lombok-1.0.1/server/lombok.jar", lombokSupport={enabled=true}}}, errors={incompleteClasspath={severity=ignore}}, configuration={checkProjectSettingsExclusions=false, updateBuildConfiguration=automatic, maven={userSettings=/Users/zhouyuan11/work/settings.xml, globalSettings=null, notCoveredPluginExecutionSeverity=warning}, workspaceCacheLimit=90.0, runtimes=[{name=JavaSE-1.8, path=/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home, default=true}]}, trace={server=off}, import={maven={enabled=true}, gradle={enabled=true, wrapper={enabled=true}, version=null, home=/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home, java={home=null}, offline={enabled=false}, arguments=null, jvmArguments=null, user={home=null}}, exclusions=[**/node_modules/**, **/.metadata/**, **/archetype-resources/**, **/META-INF/maven/**], generatesMetadataFilesAtProjectRoot=true}, maven={downloadSources=false, updateSnapshots=false}, eclipse={downloadSources=false}, referencesCodeLens={enabled=false}, signatureHelp={enabled=false, description={enabled=false}}, implementationsCodeLens={enabled=false}, format={enabled=true, settings={url=null, profile=null}, comments={enabled=true}, onType={enabled=true}, insertSpaces=true, tabSize=4.0}, saveActions={organizeImports=false}, project={referencedLibraries=[lib/**/*.jar], importOnFirstTimeStartup=automatic, importHint=true, resourceFilters=[node_modules, .git], encoding=ignore, exportJar={targetPath=${workspaceFolder}/${workspaceFolderBasename}.jar}}, contentProvider={preferred=null}, autobuild={enabled=true}, maxConcurrentBuilds=1.0, recommendations={dependency={analytics={show=true}}}, completion={maxResults=0.0, enabled=true, guessMethodArguments=false, favoriteStaticMembers=[org.junit.Assert.*, org.junit.Assume.*, org.junit.jupiter.api.Assertions.*, org.junit.jupiter.api.Assumptions.*, org.junit.jupiter.api.DynamicContainer.*, org.junit.jupiter.api.DynamicTest.*, org.mockito.Mockito.*, org.mockito.ArgumentMatchers.*, org.mockito.Answers.*], filteredTypes=[java.awt.*, com.sun.*, sun.*, jdk.*, org.graalvm.*, io.micrometer.shaded.*], importOrder=[java, javax, org, com]}, foldingRange={enabled=true}, progressReports={enabled=true}, codeGeneration={hashCodeEquals={useJava7Objects=false, useInstanceof=false}, useBlocks=false, generateComments=false, toString={template=${object.className} [${member.name()}=${member.value}, ${otherMembers}], codeStyle=STRING_CONCATENATION, skipNullValues=false, listArrayContents=true, limitElements=0.0}, insertionLocation=afterCursor}, selectionRange={enabled=true}, showBuildStatusOnStart={enabled=notification}, server={launchMode=Standard}, sources={organizeImports={starThreshold=99.0, staticStarThreshold=99.0}}, imports={gradle={wrapper={checksums=[]}}}, templates={fileHeader=[], typeComment=[]}, references={includeAccessors=true, includeDecompiledSources=true}, typeHierarchy={lazyLoad=false}, settings={url=null}, symbols={includeSourceMethodDeclarations=false}, quickfix={showAt=line}, inlayHints={parameterNames={enabled=literals, exclusions=[]}}, debug={logLevel=warn, settings={showHex=false, showStaticVariables=false, showQualifiedNames=false, showLogicalStructure=true, showToString=true, maxStringLength=0.0, numericPrecision=0.0, hotCodeReplace=manual, enableRunDebugCodeLens=true, forceBuildBeforeLaunch=true, onBuildFailureProceed=false, console=integratedTerminal, exceptionBreakpoint={skipClasses=[]}, stepping={skipClasses=[], skipSynthetics=false, skipStaticInitializers=false, skipConstructors=false}, jdwp={limitOfVariablesPerJdwpRequest=100.0, requestTimeout=3000.0}, vmArgs=}}, silentNotification=false, dependency={showMembers=false, syncWithFolderExplorer=true, autoRefresh=true, refreshDelay=2000.0, packagePresentation=flat}, help={firstView=auto, showReleaseNotes=true, collectErrorLog=false}, test={defaultConfig=, config={}}}}

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:30.842
!MESSAGE >> workspace/didChangeConfiguration

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:30.859
!MESSAGE >> New configuration: {java={home=/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home, jdt={ls={java={home=/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home}, vmargs=-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -javaagent:"/Users/zhouyuan11/.vscode/extensions/vscjava.vscode-lombok-1.0.1/server/lombok.jar", lombokSupport={enabled=true}}}, errors={incompleteClasspath={severity=ignore}}, configuration={checkProjectSettingsExclusions=false, updateBuildConfiguration=automatic, maven={userSettings=/Users/zhouyuan11/work/settings.xml, globalSettings=null, notCoveredPluginExecutionSeverity=warning}, workspaceCacheLimit=90.0, runtimes=[{name=JavaSE-1.8, path=/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home, default=true}]}, trace={server=off}, import={maven={enabled=true}, gradle={enabled=true, wrapper={enabled=true}, version=null, home=/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home, java={home=null}, offline={enabled=false}, arguments=null, jvmArguments=null, user={home=null}}, exclusions=[**/node_modules/**, **/.metadata/**, **/archetype-resources/**, **/META-INF/maven/**], generatesMetadataFilesAtProjectRoot=true}, maven={downloadSources=false, updateSnapshots=false}, eclipse={downloadSources=false}, referencesCodeLens={enabled=false}, signatureHelp={enabled=false, description={enabled=false}}, implementationsCodeLens={enabled=false}, format={enabled=true, settings={url=null, profile=null}, comments={enabled=true}, onType={enabled=true}, insertSpaces=true, tabSize=4.0}, saveActions={organizeImports=false}, project={referencedLibraries=[lib/**/*.jar], importOnFirstTimeStartup=automatic, importHint=true, resourceFilters=[node_modules, .git], encoding=ignore, exportJar={targetPath=${workspaceFolder}/${workspaceFolderBasename}.jar}}, contentProvider={preferred=null}, autobuild={enabled=true}, maxConcurrentBuilds=1.0, recommendations={dependency={analytics={show=true}}}, completion={maxResults=0.0, enabled=true, guessMethodArguments=false, favoriteStaticMembers=[org.junit.Assert.*, org.junit.Assume.*, org.junit.jupiter.api.Assertions.*, org.junit.jupiter.api.Assumptions.*, org.junit.jupiter.api.DynamicContainer.*, org.junit.jupiter.api.DynamicTest.*, org.mockito.Mockito.*, org.mockito.ArgumentMatchers.*, org.mockito.Answers.*], filteredTypes=[java.awt.*, com.sun.*, sun.*, jdk.*, org.graalvm.*, io.micrometer.shaded.*], importOrder=[java, javax, org, com]}, foldingRange={enabled=true}, progressReports={enabled=true}, codeGeneration={hashCodeEquals={useJava7Objects=false, useInstanceof=false}, useBlocks=false, generateComments=false, toString={template=${object.className} [${member.name()}=${member.value}, ${otherMembers}], codeStyle=STRING_CONCATENATION, skipNullValues=false, listArrayContents=true, limitElements=0.0}, insertionLocation=afterCursor}, selectionRange={enabled=true}, showBuildStatusOnStart={enabled=notification}, server={launchMode=Standard}, sources={organizeImports={starThreshold=99.0, staticStarThreshold=99.0}}, imports={gradle={wrapper={checksums=[]}}}, templates={fileHeader=[], typeComment=[]}, references={includeAccessors=true, includeDecompiledSources=true}, typeHierarchy={lazyLoad=false}, settings={url=null}, symbols={includeSourceMethodDeclarations=false}, quickfix={showAt=line}, inlayHints={parameterNames={enabled=literals, exclusions=[]}}, debug={logLevel=warn, settings={showHex=false, showStaticVariables=false, showQualifiedNames=false, showLogicalStructure=true, showToString=true, maxStringLength=0.0, numericPrecision=0.0, hotCodeReplace=manual, enableRunDebugCodeLens=true, forceBuildBeforeLaunch=true, onBuildFailureProceed=false, console=integratedTerminal, exceptionBreakpoint={skipClasses=[]}, stepping={skipClasses=[], skipSynthetics=false, skipStaticInitializers=false, skipConstructors=false}, jdwp={limitOfVariablesPerJdwpRequest=100.0, requestTimeout=3000.0}, vmArgs=}}, silentNotification=false, dependency={showMembers=false, syncWithFolderExplorer=true, autoRefresh=true, refreshDelay=2000.0, packagePresentation=flat}, help={firstView=auto, showReleaseNotes=true, collectErrorLog=false}, test={defaultConfig=, config={}}}}

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:42.062
!MESSAGE >> shutdown

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:43.082
!MESSAGE >> exit

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:43.091
!MESSAGE Shutdown received... waking up main thread

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:43.123
!MESSAGE class org.eclipse.jdt.ls.core.internal.JavaLanguageServerPlugin is stopping:
!SESSION 2022-07-29 10:49:44.476 -----------------------------------------------
eclipse.buildId=unknown
java.version=17.0.3
java.vendor=Eclipse Adoptium
BootLoader constants: OS=macosx, ARCH=aarch64, WS=cocoa, NL=zh_CN_#Hans
Command-line arguments:  -data /Users/zhouyuan11/Library/Application Support/Code/User/workspaceStorage/1b8e5a3f93ea059da49b0e9499823f27/redhat.java/jdt_ws

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.616
!MESSAGE class org.eclipse.jdt.ls.core.internal.JavaLanguageServerPlugin is started

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.735
!MESSAGE Main thread is waiting

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.754
!MESSAGE >> initialize

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.767
!MESSAGE Initializing Java Language Server 1.14.0.202207211349

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.791
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.795
!MESSAGE Non-Static Commands: [java.edit.organizeImports, java.project.refreshDiagnostics, java.project.import, java.navigate.openTypeHierarchy, java.project.removeFromSourcePath, java.project.listSourcePaths, java.project.resolveStackTraceLocation, java.project.getAll, java.project.isTestFile, java.project.getClasspaths, java.navigate.resolveTypeHierarchy, java.edit.stringFormatting, java.project.getSettings, java.project.updateSourceAttachment, java.project.resolveWorkspaceSymbol, java.project.upgradeGradle, java.project.resolveSourceAttachment, java.project.addToSourcePath]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.803
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.809
!MESSAGE Non-Static Commands: [java.intellicode.completion, java.intellicode.completion.resolve, java.intellicode.enable]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.819
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.827
!MESSAGE Non-Static Commands: [vscode.java.checkProjectSettings, vscode.java.isOnClasspath, vscode.java.fetchUsageData, vscode.java.validateLaunchConfig, vscode.java.resolveInlineVariables, vscode.java.resolveClassFilters, vscode.java.resolveMainMethod, vscode.java.resolveClasspath, vscode.java.resolveBuildFiles, vscode.java.resolveMainClass, vscode.java.updateDebugSettings, vscode.java.resolveSourceUri, vscode.java.fetchPlatformSettings, vscode.java.buildWorkspace, vscode.java.startDebugSession, vscode.java.inferLaunchCommandLength, vscode.java.resolveElementAtSelection, vscode.java.resolveJavaExecutable]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.836
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.842
!MESSAGE Non-Static Commands: [java.maven.initializeSearcher, java.maven.searchArtifact, java.maven.addDependency, java.maven.controlContext]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.856
!MESSAGE Static Commands: [sts.java.addClasspathListener, sts.java.removeClasspathListener]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.859
!MESSAGE Non-Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.861
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.863
!MESSAGE Non-Static Commands: [sts.java.javadoc]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.865
!MESSAGE Static Commands: [sts.java.type]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.867
!MESSAGE Non-Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.869
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.871
!MESSAGE Non-Static Commands: [sts.java.javadocHoverLink]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.874
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.876
!MESSAGE Non-Static Commands: [sts.java.location]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.877
!MESSAGE Static Commands: [sts.java.search.packages, sts.java.search.types]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.879
!MESSAGE Non-Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.884
!MESSAGE Static Commands: [sts.java.hierarchy.supertypes, sts.java.hierarchy.subtypes]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.892
!MESSAGE Non-Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.894
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.895
!MESSAGE Non-Static Commands: [sts.java.code.completions]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.898
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.900
!MESSAGE Non-Static Commands: [java.project.refreshLib, java.project.list, java.project.generateJar, java.project.getMainClasses, java.getPackageData, java.resolvePath]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.902
!MESSAGE Static Commands: []

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.903
!MESSAGE Non-Static Commands: [vscode.java.test.findJavaProjects, vscode.java.test.findTestPackagesAndTypes, vscode.java.test.findTestTypesAndMethods, vscode.java.test.resolvePath, vscode.java.test.findTestLocation, vscode.java.test.get.testpath, vscode.java.test.findDirectTestChildrenForClass, vscode.java.test.navigateToTestOrTarget, vscode.java.test.junit.argument, vscode.java.test.generateTests]

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.910
!MESSAGE Starting org.eclipse.m2e.core

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.916
!MESSAGE Started org.eclipse.m2e.core 3ms

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.944
!MESSAGE ProjectRegistryRefreshJob finished 22ms

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.952
!MESSAGE Starting org.eclipse.buildship.core

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.975
!MESSAGE Started org.eclipse.buildship.core 29ms

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:45.983
!MESSAGE LoadingGradleVersionJob finished 0ms

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:46.006
!MESSAGE >> initialized

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:46.073
!MESSAGE Importing Maven project(s)

!ENTRY org.eclipse.jdt.ls.core 4 0 2022-07-29 10:49:47.657
!MESSAGE Initialization failed 
!STACK 1
org.eclipse.core.runtime.CoreException: Failed to import projects
	at org.eclipse.jdt.ls.core.internal.managers.ProjectsManager.importProjects(ProjectsManager.java:161)
	at org.eclipse.jdt.ls.core.internal.managers.ProjectsManager.initializeProjects(ProjectsManager.java:111)
	at org.eclipse.jdt.ls.core.internal.handlers.InitHandler$1.runInWorkspace(InitHandler.java:244)
	at org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:43)
	at org.eclipse.core.internal.jobs.Worker.run(Worker.java:63)
Contains: Cannot nest 'alarm-utils/src/main/java' inside 'alarm-utils/src'. To enable the nesting exclude 'main/' from 'alarm-utils/src'
!SUBENTRY 1 org.eclipse.jdt.ls.core 4 -1 2022-07-29 10:49:47.657
!MESSAGE Failed to import projects
!SUBENTRY 2 org.eclipse.jdt.core 4 964 2022-07-29 10:49:47.657
!MESSAGE Cannot nest 'alarm-utils/src/main/java' inside 'alarm-utils/src'. To enable the nesting exclude 'main/' from 'alarm-utils/src'

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:47.751
!MESSAGE >> initialization job finished

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:47.758
!MESSAGE >> workspace/didChangeConfiguration

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:47.784
!MESSAGE >> java/buildWorkspace (incremental)

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:47.788
!MESSAGE >> New configuration: {java={home=/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home, jdt={ls={java={home=/Library/Java/JavaVirtualMachines/temurin-17.jdk/Contents/Home}, vmargs=-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -javaagent:"/Users/zhouyuan11/.vscode/extensions/vscjava.vscode-lombok-1.0.1/server/lombok.jar", lombokSupport={enabled=true}}}, errors={incompleteClasspath={severity=ignore}}, configuration={checkProjectSettingsExclusions=false, updateBuildConfiguration=automatic, maven={userSettings=/Users/zhouyuan11/work/settings.xml, globalSettings=null, notCoveredPluginExecutionSeverity=warning}, workspaceCacheLimit=90.0, runtimes=[{name=JavaSE-1.8, path=/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home, default=true}]}, trace={server=off}, import={maven={enabled=true}, gradle={enabled=true, wrapper={enabled=true}, version=null, home=/Library/Java/JavaVirtualMachines/jdk1.8.0_333.jdk/Contents/Home, java={home=null}, offline={enabled=false}, arguments=null, jvmArguments=null, user={home=null}}, exclusions=[**/node_modules/**, **/.metadata/**, **/archetype-resources/**, **/META-INF/maven/**], generatesMetadataFilesAtProjectRoot=true}, maven={downloadSources=false, updateSnapshots=false}, eclipse={downloadSources=false}, referencesCodeLens={enabled=false}, signatureHelp={enabled=false, description={enabled=false}}, implementationsCodeLens={enabled=false}, format={enabled=true, settings={url=null, profile=null}, comments={enabled=true}, onType={enabled=true}, insertSpaces=true, tabSize=4.0}, saveActions={organizeImports=false}, project={referencedLibraries=[lib/**/*.jar], importOnFirstTimeStartup=automatic, importHint=true, resourceFilters=[node_modules, .git], encoding=ignore, exportJar={targetPath=${workspaceFolder}/${workspaceFolderBasename}.jar}}, contentProvider={preferred=null}, autobuild={enabled=true}, maxConcurrentBuilds=1.0, recommendations={dependency={analytics={show=true}}}, completion={maxResults=0.0, enabled=true, guessMethodArguments=false, favoriteStaticMembers=[org.junit.Assert.*, org.junit.Assume.*, org.junit.jupiter.api.Assertions.*, org.junit.jupiter.api.Assumptions.*, org.junit.jupiter.api.DynamicContainer.*, org.junit.jupiter.api.DynamicTest.*, org.mockito.Mockito.*, org.mockito.ArgumentMatchers.*, org.mockito.Answers.*], filteredTypes=[java.awt.*, com.sun.*, sun.*, jdk.*, org.graalvm.*, io.micrometer.shaded.*], importOrder=[java, javax, org, com]}, foldingRange={enabled=true}, progressReports={enabled=true}, codeGeneration={hashCodeEquals={useJava7Objects=false, useInstanceof=false}, useBlocks=false, generateComments=false, toString={template=${object.className} [${member.name()}=${member.value}, ${otherMembers}], codeStyle=STRING_CONCATENATION, skipNullValues=false, listArrayContents=true, limitElements=0.0}, insertionLocation=afterCursor}, selectionRange={enabled=true}, showBuildStatusOnStart={enabled=notification}, server={launchMode=Standard}, sources={organizeImports={starThreshold=99.0, staticStarThreshold=99.0}}, imports={gradle={wrapper={checksums=[]}}}, templates={fileHeader=[], typeComment=[]}, references={includeAccessors=true, includeDecompiledSources=true}, typeHierarchy={lazyLoad=false}, settings={url=null}, symbols={includeSourceMethodDeclarations=false}, quickfix={showAt=line}, inlayHints={parameterNames={enabled=literals, exclusions=[]}}, debug={logLevel=warn, settings={showHex=false, showStaticVariables=false, showQualifiedNames=false, showLogicalStructure=true, showToString=true, maxStringLength=0.0, numericPrecision=0.0, hotCodeReplace=manual, enableRunDebugCodeLens=true, forceBuildBeforeLaunch=true, onBuildFailureProceed=false, console=integratedTerminal, exceptionBreakpoint={skipClasses=[]}, stepping={skipClasses=[], skipSynthetics=false, skipStaticInitializers=false, skipConstructors=false}, jdwp={limitOfVariablesPerJdwpRequest=100.0, requestTimeout=3000.0}, vmArgs=}}, silentNotification=false, dependency={showMembers=false, syncWithFolderExplorer=true, autoRefresh=true, refreshDelay=2000.0, packagePresentation=flat}, help={firstView=auto, showReleaseNotes=true, collectErrorLog=false}, test={defaultConfig=, config={}}}}

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:47.791
!MESSAGE >> workspace/executeCommand java.project.list

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:47.804
!MESSAGE >> workspace/executeCommand java.getPackageData

!ENTRY org.eclipse.jdt.ls.core 4 0 2022-07-29 10:49:50.409
!MESSAGE Error occured while building workspace. Details: 
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-dao;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-dao/src/main/java/com/jd/ads/dao/alarmback/config/DataSourceAspect.java; line: 1
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-entity;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-entity/src/main/java/com/jd/ads/alarmback/bo/jdq/JdqAlarmRecordDetail.java; line: 1
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-utils;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-utils/src/main/java/com/jd/ads/alarmback/constants/AggregateType.java; line: 1

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:50.457
!MESSAGE >> build jobs finished

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:50.510
!MESSAGE >> registerWatchers'

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:50.519
!MESSAGE >> registerFeature 'workspace/didChangeWatchedFiles'

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:50.528
!MESSAGE >> watchers registered

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:50.542
!MESSAGE >> workspace/executeCommand java.project.getAll

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:50.553
!MESSAGE >> workspace/executeCommand java.project.getAll

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:50.559
!MESSAGE >> workspace/executeCommand vscode.java.test.get.testpath

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:50.561
!MESSAGE >> workspace/executeCommand java.project.listSourcePaths

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:49:50.565
!MESSAGE >> workspace/executeCommand java.project.getClasspaths

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:59:19.801
!MESSAGE >> workspace/executeCommand java.project.getSettings

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:59:23.638
!MESSAGE >> workspace/executeCommand java.project.list

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:59:23.651
!MESSAGE >> workspace/executeCommand java.resolvePath

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 10:59:25.167
!MESSAGE >> workspace/executeCommand java.resolvePath

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:37.942
!MESSAGE >> document/didOpen

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:38.009
!MESSAGE >> document/codeAction

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:38.166
!MESSAGE >> workspace/executeCommand java.maven.initializeSearcher

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:38.188
!MESSAGE >> textDocument/semanticTokens/full

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:38.193
!MESSAGE >> document/documentSymbol

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:38.200
!MESSAGE >> workspace/executeCommand java.resolvePath

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:38.209
!MESSAGE >> textDocument/inlayHint

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:39.168
!MESSAGE >> document/foldingRange

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:39.254
!MESSAGE >> document/codeAction

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:39.274
!MESSAGE >> workspace/executeCommand java.maven.initializeSearcher

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:39.279
!MESSAGE >> workspace/executeCommand vscode.java.resolveMainMethod

!ENTRY java-debug 1 0 2022-07-29 11:01:39.297
!MESSAGE Starting com.microsoft.java.debug.plugin

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:39.730
!MESSAGE >> workspace/executeCommand vscode.java.resolveMainMethod

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:40.111
!MESSAGE >> textDocument/inlayHint

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:41.082
!MESSAGE >> document/hover

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:41.099
!MESSAGE >> java/findLinks

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:41.505
!MESSAGE >> document/codeAction

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:41.509
!MESSAGE >> document/documentSymbol

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:41.514
!MESSAGE >> workspace/executeCommand vscode.java.updateDebugSettings

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:41.524
!MESSAGE >> java/buildWorkspace (incremental)

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:41.640
!MESSAGE >> workspace/executeCommand sts.java.addClasspathListener

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:41.805
!MESSAGE >> workspace/executeCommand vscode.java.resolveMainMethod

!ENTRY org.eclipse.jdt.ls.core 4 0 2022-07-29 11:01:41.834
!MESSAGE Error occured while building workspace. Details: 
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-dao;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-dao/src/main/java/com/jd/ads/dao/alarmback/config/DataSourceAspect.java; line: 1
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-entity;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-entity/src/main/java/com/jd/ads/alarmback/bo/jdq/JdqAlarmRecordDetail.java; line: 1
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-utils;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-utils/src/main/java/com/jd/ads/alarmback/constants/AggregateType.java; line: 1

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:42.125
!MESSAGE >> textDocument/inlayHint

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:44.926
!MESSAGE >> workspace/executeCommand vscode.java.resolveBuildFiles

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:45.149
!MESSAGE >> workspace/executeCommand vscode.java.resolveMainMethod

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:47.704
!MESSAGE >> document/codeAction

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:47.726
!MESSAGE >> workspace/executeCommand java.resolvePath

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:47.736
!MESSAGE >> textDocument/inlayHint

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:47.965
!MESSAGE >> workspace/executeCommand vscode.java.resolveMainMethod

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:47.969
!MESSAGE >> document/codeAction

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:48.863
!MESSAGE >> workspace/executeCommand java.resolvePath

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:01:49.384
!MESSAGE >> workspace/executeCommand java.resolvePath

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:04:35.064
!MESSAGE >> java/buildWorkspace (incremental)

!ENTRY org.eclipse.jdt.ls.core 4 0 2022-07-29 11:04:35.094
!MESSAGE Error occured while building workspace. Details: 
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-dao;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-dao/src/main/java/com/jd/ads/dao/alarmback/config/DataSourceAspect.java; line: 1
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-entity;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-entity/src/main/java/com/jd/ads/alarmback/bo/jdq/JdqAlarmRecordDetail.java; line: 1
 message: The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project; code: 0; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-utils;
 message: The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files; code: 16777540; resource: /Users/zhouyuan11/work/test/alarm-back/alarm-utils/src/main/java/com/jd/ads/alarmback/constants/AggregateType.java; line: 1

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:04:38.599
!MESSAGE >> workspace/executeCommand vscode.java.resolveBuildFiles

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:09:43.183
!MESSAGE >> document/codeAction

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:09:43.207
!MESSAGE >> textDocument/inlayHint

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:09:43.359
!MESSAGE >> document/codeAction

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:09:43.407
!MESSAGE >> workspace/executeCommand vscode.java.resolveMainMethod

!ENTRY org.eclipse.jdt.ls.core 1 0 2022-07-29 11:09:44.223
!MESSAGE >> document/foldingRange

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Reproduce the report with the provided VS Code settings and Java 8/17 paths, then start at ProjectsManager.importProjects, ProjectsManager.initializeProjects, and InitHandler$1 in the logged stack trace. Inspect the reported Maven import failure and determine whether it is related to runtime selection; done means the project imports successfully or the issue is narrowed to a specific configuration or nesting error.

Written by the indexing model from the issue text.

Assessment

Tech stack
java, typescript, vscode
Domain
developer-experience, tooling
Issue type
Bug
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
25/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.