使 src/main/resources/ 在 Eclipse 中像 src/main/java 一样使用 "flat view"
Make src/main/resources/ use the "flat view" like src/main/java in Eclipse
有没有办法让 所有 我的 src/main/resources/
文件夹都有 "flat view" 而不是 "tree view"?
我正在使用排除它们的 M2Eclipse(排除 **
)。当然有一些方法可以只更改首选项中的视图选项,而不是从每个项目中删除它?或者是否有一个 M2Eclipse 设置可以删除它?
下面对我所说的树视图和平面视图的解释:
树视图
v com
v Whosebug
v example
file1.xml
file2.xml
v weNeedToGoDeeper
file3.xml
file4.xml
> someClosedFolder
平面图
v com.Whosebug.example
file1.xml
file2.xml
v com.Whosebug.example.weNeedToGoDeeper
file3.xml
file4.xml
> com.Whosebug.example.someClosedFolder
也许这是您要更改的选项。
当您添加一个新的 Maven 项目时,m2eclipse 会在您的构建路径配置中添加一个排除模式。如果你改变它,你可以把文件夹变平。
Project properties
Java Build Path
Source tab
src/main/resources
Excluded
Edit
Delete (or modify) exclusion pattern
有没有办法让 所有 我的 src/main/resources/
文件夹都有 "flat view" 而不是 "tree view"?
我正在使用排除它们的 M2Eclipse(排除 **
)。当然有一些方法可以只更改首选项中的视图选项,而不是从每个项目中删除它?或者是否有一个 M2Eclipse 设置可以删除它?
下面对我所说的树视图和平面视图的解释:
树视图
v com v Whosebug v example file1.xml file2.xml v weNeedToGoDeeper file3.xml file4.xml > someClosedFolder
平面图
v com.Whosebug.example file1.xml file2.xml v com.Whosebug.example.weNeedToGoDeeper file3.xml file4.xml > com.Whosebug.example.someClosedFolder
也许这是您要更改的选项。
当您添加一个新的 Maven 项目时,m2eclipse 会在您的构建路径配置中添加一个排除模式。如果你改变它,你可以把文件夹变平。
Project properties Java Build Path Source tab src/main/resources Excluded Edit Delete (or modify) exclusion pattern