在创建了基本的hello world Spring Java application之后,我在'hello'包定义中得到了这个lint错误:
The declared package "hello" does not match the expected package "main.java.hello"
我知道在Eclipse中,你可以将Java源代码目录改为/src/main/java,而不仅仅是/src。如何在VSCode中实现相同的功能?
在创建了基本的hello world Spring Java application之后,我在'hello'包定义中得到了这个lint错误:
The declared package "hello" does not match the expected package "main.java.hello"
我知道在Eclipse中,你可以将Java源代码目录改为/src/main/java,而不仅仅是/src。如何在VSCode中实现相同的功能?
2条答案
按热度按时间xzlaal3s1#
您可以在资源管理器中右键单击src/main/java并选择“将文件夹添加到Java源路径”,然后重新启动VSCode。
ftf50wuq2#
在.vscode/settings文件集中
或者编辑Workspace设置并找到java.sourcePaths属性。