我已经使用VS Code的Spring Intializr扩展创建了一个Spring Boot应用程序。 配置,构建工具:maven,语言:Java,groupId:com.example,artifactId:springdemo,Spring引导版本:2.0.3,我从下拉列表中选择了2个依赖项,即Spring MVC和Spring DevTools Core。 这是屏幕截图Screenshot of the selected dependencies 导入并打开文件夹结构Project Structure after vs code imports the maven project and opens up the folder
之后此后,我运行了一个命令
chmod 777 mvnw
授予对gradle包装器的许可,然后进行许可
./mvnw clean install
这似乎很好logs after the ./mvnw clean install command
这是我的pom.xml My pom.xml contains
区别在于:我的VS Code项目不包含Maven依赖项文件夹,以防日食,甚至在安装所有软件包后,VS代码似乎也无法识别这些软件包并显示错误 errors in vs code 这就是我的Eclipse项目结构的样子,eclipse project structure contains the maven dependencies
最终结果是一个正在运行的项目。该项目甚至通过./mvnw spring-boot:run
但是我无法从VS Code中获得任何种类的IntelliSense,尽管eclipse可以工作,但是我需要使用VS Code。请帮忙。