Eclipse項目中的靜態資源採用webpack來打包,在項目中的webapp目錄下會生成node_modules目錄,裏面包含node相關模塊。因爲資源文件較多,會形成Eclipse編譯緩慢,另外這些文件不須要發不到運行服務器上,且不須要作版本控制。node
選中項目右鍵-properties,以下圖所示webpack
當使用Eclipse中的SVN來來就行版本控制時,選擇node_modules目錄後,發現添加至svn:ignore
爲灰色,不可用,沒法忽略相關文件。能夠經過以下配置來解決該問題。web
在項目的maven pom.xml中build下的配置以下apache
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>2.6</version> <configuration> <packagingExcludes> node_modules/** </packagingExcludes> </configuration> </plugin>