skip to Main Content

I have created a Spring Boot project in Visual Studio Code. My issue is that autocompletion is not working in my application.settings file, it works fine in other parts of project. Any help will be appreciated.

Screenshot here

2

Answers


  1. Do you have the necessary plugins/extension installed in your VS Code.

    Try installing Spring Boot Tools and try again.

    Login or Signup to reply.
  2.    vs code => settings => Editor: Quick Suggestions

    "editor.quickSuggestions": {
            "other": "on",
            "comments": "on",
            "strings": "on"
        }
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search