課程
/后端開發(fā)
/Java
/Spring MVC起步
有沒有哪位大佬提供一下pom.xml中的代碼
2019-03-03
源自:Spring MVC起步 3-5
正在回答
<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>imooc-arthur</groupId>
? <artifactId>spring-mvc-study</artifactId>
? <version>1.0-SNAPSHOT</version>
? <name>spring-mvc-study Maven Webapp</name>
? <url>http://maven.apache.org</url>
? <properties>
? ? ? <commons-lang.version>2.6</commons-lang.version>
? ? ? <slf4j.version>1.7.6</slf4j.version>
? ? ? <spring.version>4.3.5.RELEASE</spring.version>
? </properties>
? <dependencies>
? ? <dependency>
? ? ? <groupId>org.springframework</groupId>
? ? ? <artifactId>spring-framework-bom</artifactId>
? ? ? <version>${spring.version}</version>
? ? ? <type>pom</type>
? ? ? <scope>import</scope>
? ? </dependency>
? ??
? ? ? ? <groupId>org.springframework</groupId>
? ? ? ? <artifactId>spring-webmvc</artifactId>
? ? ? ? <version>${spring.version}</version>
? </dependencies>
? <build>
? ? <finalName>spring-mvc-study</finalName>
? </build>
</project>
舉報
Java中Spring MVC框架入門教程,快來看最易用的MVC框架
1 回答關(guān)于pom.xml的問題
2 回答pom.xml
2 回答pom.xml報錯
2 回答修改pom.xml
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號
2019-03-05
<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>imooc-arthur</groupId>
? <artifactId>spring-mvc-study</artifactId>
? <version>1.0-SNAPSHOT</version>
? <name>spring-mvc-study Maven Webapp</name>
? <url>http://maven.apache.org</url>
? <properties>
? ? ? <commons-lang.version>2.6</commons-lang.version>
? ? ? <slf4j.version>1.7.6</slf4j.version>
? ? ? <spring.version>4.3.5.RELEASE</spring.version>
? </properties>
? <dependencies>
? ? <dependency>
? ? ? <groupId>org.springframework</groupId>
? ? ? <artifactId>spring-framework-bom</artifactId>
? ? ? <version>${spring.version}</version>
? ? ? <type>pom</type>
? ? ? <scope>import</scope>
? ? </dependency>
? ??
? ? <dependency>
? ? ? ? <groupId>org.springframework</groupId>
? ? ? ? <artifactId>spring-webmvc</artifactId>
? ? ? ? <version>${spring.version}</version>
? ? </dependency>
? </dependencies>
? <build>
? ? <finalName>spring-mvc-study</finalName>
? </build>
</project>