maven tomcat 怎么同步刷新服务器
maven3.0.5 jdk-1.6.0.45eclipse-juno m2eclipse tomcat7.0.47
怎么实现当 jsp 文件改变时,不需要 tomcat7:redeploy 此maven项目,而能同步刷新服务器?
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.1</version>
<configuration>
<server>tomcat</server>
</configuration>
</plugin>
补充:Java , Java EE