如何在Save(Ctrl + s)上在Netbeans中热部署Maven Web项目?

时间:2015-05-19 10:39:41

标签: java maven netbeans

Netbeans版本:8.0.2

JDK:1.8

项目类型:.WAR(Web项目)

以下是使用netbeans IDE完成的设置:

* In Maven Project, Right clicked -> Properties -> Build -> Compile -> Compile on Save (Ticked).
* In Maven Project, Right clicked -> Properties -> Run -> Deploy on Save (Ticked).
* Added following to POM.XML:
        <plugin>
            <artifactId>maven-antrun-plugin</artifactId>
            <version>1.6</version>
            <executions>
                <execution>
                    <phase>package</phase>
                    <configuration>
                        <target>
                            <unzip src="target/gave.war" dest="D:\apache-tomcat-8.0.18\webapps/gave"/>
                        </target>
                    </configuration>
                    <goals>
                        <goal>run</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

现在我正在进行更改在.js文件中完成并保存文件( ctrl + s )。

但是建筑没有发生,应用中也没有反映出来。

当我需要右键单击项目并明确构建时,我才能自动构建和部署。

有没有办法在保存时构建和部署( Ctrl + s

0 个答案:

没有答案