溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

spring項(xiàng)目如何使用maven進(jìn)行搭建

發(fā)布時(shí)間:2020-11-21 15:42:09 來(lái)源:億速云 閱讀:154 作者:Leah 欄目:編程語(yǔ)言

這期內(nèi)容當(dāng)中小編將會(huì)給大家?guī)?lái)有關(guān)spring項(xiàng)目如何使用maven進(jìn)行搭建,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

開發(fā)工具:MyEclipse2014版(jdk1.7)+Maven3.9。

新建Maven項(xiàng)目:

Step1:

spring項(xiàng)目如何使用maven進(jìn)行搭建

Step2:

spring項(xiàng)目如何使用maven進(jìn)行搭建

Step3:這里選maven-archetype-webapp,因?yàn)楹竺娴捻?xiàng)目講解都是web項(xiàng)目。如果是純java項(xiàng)目,可以選擇 maven-archetype-quickstart。

spring項(xiàng)目如何使用maven進(jìn)行搭建       

Step4:

spring項(xiàng)目如何使用maven進(jìn)行搭建

Step5:右鍵項(xiàng)目,build path,修改jdk運(yùn)行環(huán)境。

spring項(xiàng)目如何使用maven進(jìn)行搭建

到這里,maven的web項(xiàng)目初建完畢。

修改:pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 <modelVersion>4.0.0</modelVersion>
 <groupId>com.elstar</groupId>
 <artifactId>spring</artifactId>
 <packaging>war</packaging>
 <version>0.0.1-SNAPSHOT</version>
 <name>spring Maven Webapp</name>
 <url>http://maven.apache.org</url>
 
 <!-- jar包版本控制 -->
 <properties>
  <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
   <junit.version>4.12</junit.version>
   <spring.version>4.3.3.RELEASE</spring.version>
 </properties>  
 <dependencies>
   <!-- junit支持 -->
  <dependency>
   <groupId>junit</groupId>
   <artifactId>junit</artifactId>
   <version>${junit.version}</version>
   <scope>test</scope>
  </dependency>
  <!-- spring支持 -->
  <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-context</artifactId>
    <version>${spring.version}</version>
  </dependency>
  <!-- spring測(cè)試支持 -->
  <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-test</artifactId>
    <version>${spring.version}</version>
  </dependency>
 </dependencies>
 <build>
  <finalName>spring</finalName>
 </build>
</project>

添加spring配置文件:src/main/resources/applicationContext.xml

<&#63;xml version="1.0" encoding="UTF-8"&#63;>  
<beans xmlns="http://www.springframework.org/schema/beans"  
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  xmlns:p="http://www.springframework.org/schema/p" 
  xmlns:aop="http://www.springframework.org/schema/aop"  
  xmlns:context="http://www.springframework.org/schema/context" 
  xmlns:jee="http://www.springframework.org/schema/jee" 
  xmlns:tx="http://www.springframework.org/schema/tx" 
  xsi:schemaLocation="  
    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd 
    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd 
    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd 
    http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-4.0.xsd 
    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">  
    
</beans>

上述就是小編為大家分享的spring項(xiàng)目如何使用maven進(jìn)行搭建了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI