Teddy Colliaux
Teddy Colliaux

Reputation: 65

VsCode's autocompletion not working on a new spring-boot project

I'm starting a new maven spring boot project on VSCode (via spring initializr). When I try to edit any java file I don't have any autocompletion or code verifications (I mean the errors showing when you're typing something wrong).

I installed the spring boot and the java extension packs as well as intellicode but it does not work.

I'm working behind a proxy but the http-proxy environment variables are correctly set (since the autocompletion works on other projects that are not spring-boot projects).

I've been stuck on this issue for some days now but it didn't find any solutions on the web.

Upvotes: 5

Views: 6862

Answers (1)

amirali
amirali

Reputation: 1964

  1. Try closing vscode and cleaning your workspace storage:

    • On linux: $HOME/.config/Code/User/workspaceStorage
    • On mac: $HOME/Library/Application Support/Code/User/workspaceStorage
    • On windows: %APPDATA%\Code\User\workspaceStorage
  2. In case it did't help, if you have the VScodeVim extension, try disabling it and restarting vscode. This might be helpful.

Upvotes: 7

Related Questions