I use the eclipse webtools plugin, and run my Tomcat from it. It has a republish method that publishes the jars as well (if not, you just clean the directory and republish).

In the pom file, you should have the following lines so that the webtools will be supported automatically

<build>
    ...
    <plugins>
        <plugin>
                <artifactId>maven-eclipse-plugin</artifactId>
                <configuration>
                        <wtpversion>1.5</wtpversion>
                        ...
                </configuration>
        </plugin>
        ...
    </plugins>
    ...
</build>

相关文章:

  • 2021-11-13
  • 2021-04-04
  • 2021-08-14
  • 2021-12-14
  • 2021-12-23
  • 2021-10-07
  • 2021-05-12
  • 2022-12-23
猜你喜欢
  • 2021-10-08
  • 2021-05-05
  • 2021-11-15
  • 2021-06-19
  • 2021-11-28
相关资源
相似解决方案