为了账号安全,请及时绑定邮箱和手机立即绑定

通过maven plugin的方式,启动tomcat ,如何配置tomcat参数呢?

比如修改8080端口之类的。

正在回答

2 回答


<!--tomcat7插件-->
<!--https://tomcat.apache.org/maven-plugin-2.0/tomcat7-maven-plugin/run-mojo.html-->
<plugin>
   <groupId>org.apache.tomcat.maven</groupId>
   <artifactId>tomcat7-maven-plugin</artifactId>
   <version>${tomcat7-maven-plugin.version}</version>
   <configuration>
       <path>${tomcat-path.version}</path>
       <port>${tomcat-port.version}</port>
       <uriEncoding>${tomcat-uri-encoding.version}</uriEncoding>
       <url>http://localhost:8080/manager/text</url>
       <server>tomcat7</server>
       <username>admin</username>
       <password>admin</password>
   </configuration>
</plugin>

1 回复 有任何疑惑可以回复我~

还有, 这个plugin是在本地的, 还是从仓库中找的?

0 回复 有任何疑惑可以回复我~
#1

风中过客 提问者

还是maven远程仓库?
2016-03-03 回复 有任何疑惑可以回复我~
#2

风中过客 提问者 回复 风中过客 提问者

是在打包成功后 就去maven 远程仓库中下载了吗?
2016-03-03 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
项目管理利器——maven
  • 参与学习       173090    人
  • 解答问题       742    个

使用maven来构建和管理Java项目,从环境配置,到maven核心知识

进入课程

通过maven plugin的方式,启动tomcat ,如何配置tomcat参数呢?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信