2分钟教你在eclipse上搭建maven项目

    对于怎样在eclipse上搭建maven项目,,,,有些朋友可能很懵逼,现在教大家个简单方法,快速上手,,



第一步      在eclipse上集成maven   不会的同行可以在,,,,,这里找到,,,


第二步,比较简单创建一个maven项目    见照片  



然后,继续看:


然后


千万注意是个war包    由于packing是war包,那么下面也就多出了webapp的目录

然后:

然后,把webcontent中的东西复制到webapp下,然后删除他。





看图:然后







最后一部就是放入相关的配置,属性,,,,,依赖


<url>http://maven.apache.org</url>




<properties>

<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

<!-- Web -->
<jsp.version>2.2</jsp.version>
<jstl.version>1.2</jstl.version>
<servlet.version>2.5</servlet.version>
</properties>


<dependencies>
<!-- spring -->
<dependency>


<groupId>org.springframework</groupId>


<artifactId>spring-core</artifactId>


<version>3.0.7.RELEASE</version>


</dependency>






<dependency>


<groupId>org.springframework</groupId>


<artifactId>spring-web</artifactId>


<version>3.0.7.RELEASE</version>


</dependency>






<dependency>


<groupId>org.springframework</groupId>


<artifactId>spring-webmvc</artifactId>


<version>3.0.7.RELEASE</version>


</dependency>






<dependency>


<groupId>org.codehaus.jackson</groupId>


<artifactId>jackson-mapper-asl</artifactId>


<version>1.7.1</version>


</dependency>

<!-- servlet   相关配置 -->
<!-- Other Web dependencies -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>${jstl.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>${servlet.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>${jsp.version}</version>
<scope>provided</scope>
</dependency>




<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>

</dependencies>


欢迎关注公众号    IT技术自查    获取更多跟详细的IT情报


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值