src/main/webapp directory not Recognized
2022-09-02 21:21:34
我使用m2eclipse在Eclipse中导入Maven Java项目。
它无法识别为源目录。src/main/webapp
在包资源管理器中以图形方式(或者当我在项目属性中查看Java-Build-Path时),
此目录不在source文件夹列表中(while或do)。src/main/java
src/main/resources
要访问它,我必须直接查看src /目录,然后开始展开...不是很方便!
但是,如果我运行 ,资源将复制到正确的目录。
(例如:到maven install
src/main/webapp/index.jsp
target/mywar/index.jsp
)
问题
- 这是正确的行为吗?(我认为它可以被视为其他资源...
- 我可以修复它吗?
- 我想知道这种情况是否还有其他缺点,我现在不会意识到?