Difference between web projects with pom.xml and web.xml

后端 未结 6 1541
被撕碎了的回忆
被撕碎了的回忆 2021-01-31 22:07

What is the difference between Java projects having pom.xml and web.xml? Can projects have both these configurations at the same time?

6条回答
  •  名媛妹妹
    2021-01-31 22:52

    The pom.xml is for configure your project with Maven.

    The web.xml is use in all Java EE project under Tomcat for example.

    You can use both, Maven is for compile and deploy your project, Tomcat is your server.

提交回复
热议问题