其他分享
首页 > 其他分享> > 毕设——maven tomcat简要学习

毕设——maven tomcat简要学习

作者:互联网

  1. 下载maven后需要在settings.xml文件中进行配置,配置阿里云为镜像
    <mirror>
      <id>alimaven</id>
      <mirrorOf>central</mirrorOf>
      <name>aliyun maven</name>
      <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
    </mirror>
  1. pom.xml文件中写上依赖库/插件,通过该文件自动下载第三方依赖
  2. tomcat是一个服务器,配置的时候需要fix一下
  3. 显示的是index.jsp中的内容

标签:xml,文件,毕设,tomcat,配置,maven,aliyun
来源: https://www.cnblogs.com/lucky-mumu/p/16107064.html