課程
/后端開發(fā)
/Java
/MyBatis-Plus入門
老師求pom.xm文件?
2019-11-09
源自:MyBatis-Plus入門 1-5
正在回答
<?xml?version="1.0"?encoding="UTF-8"?> <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/xsd/maven-4.0.0.xsd"> ????<modelVersion>4.0.0</modelVersion> ????<groupId>com.mp</groupId> ????<artifactId>select</artifactId> ????<version>1.0-SNAPSHOT</version> ????<!--Spring?Boot?Starter父工程--> ????<parent> ????????<groupId>org.springframework.boot</groupId> ????????<artifactId>spring-boot-starter-parent</artifactId> ????????<version>2.1.7.RELEASE</version> ????????<relativePath/> ????</parent> ????<dependencies> ????????<!--SpringBoot啟動器--> ????????<dependency> ????????????<groupId>org.springframework.boot</groupId> ????????????<artifactId>spring-boot-starter</artifactId> ????????</dependency> ????????<!--SpringBoot?test啟動器--> ????????<dependency> ????????????<groupId>org.springframework.boot</groupId> ????????????<artifactId>spring-boot-test</artifactId> ????????????<scope>test</scope> ????????</dependency> ????????<!--?Lombok簡化JAVA代碼?--> ????????<dependency> ????????????<groupId>org.projectlombok</groupId> ????????????<artifactId>lombok</artifactId> ????????????<optional>true</optional> ????????</dependency> ????????<!--?Mybatis-Plus啟動器?--> ????????<dependency> ????????????<groupId>com.baomidou</groupId> ????????????<artifactId>mybatis-plus-boot-starter</artifactId> ????????????<version>3.1.2</version> ????????</dependency> ????????<!--?Mysql?JDBC?不用指定version,依賴的spring?jdbc已指定?--> ????????<dependency> ????????????<groupId>mysql</groupId> ????????????<artifactId>mysql-connector-java</artifactId> ????????</dependency> ????????<dependency> ????????????<groupId>junit</groupId> ????????????<artifactId>junit</artifactId> ????????????<scope>test</scope> ????????</dependency> ????????<dependency> ????????????<groupId>org.springframework</groupId> ????????????<artifactId>spring-test</artifactId> ????????????<version>5.1.9.RELEASE</version> ????????????<scope>test</scope> ????????</dependency> ????</dependencies> </project>
這是我的,和老師是差不多
謝謝同學
舉報
MyBatis-Plus框架入門必學課程!
1 回答老師,能提供項目pom文件嗎
1 回答老師,您的eclipse是哪個版本,yml文件插件用的什么?
2 回答pom文件
1 回答yml文件
2 回答配置文件yml
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學習伙伴
掃描二維碼關注慕課網(wǎng)微信公眾號
2019-11-10
這是我的,和老師是差不多
2019-11-10
謝謝同學