課程
/后端開(kāi)發(fā)
/Java
/SpringBoot構(gòu)建電商基礎(chǔ)秒殺項(xiàng)目
昨天不小心弄壞了,,誰(shuí)有全套的,,幫忙發(fā)一份
2019-02-22
源自:SpringBoot構(gòu)建電商基礎(chǔ)秒殺項(xiàng)目 2-4
正在回答
<?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>cn.wen</groupId> ??<artifactId>ms</artifactId> ??<version>1.0-SNAPSHOT</version> ??<parent> ????<groupId>org.springframework.boot</groupId> ????<artifactId>spring-boot-starter-parent</artifactId> ????<version>2.1.2.RELEASE</version> ??</parent> ??<dependencies> ????<dependency> ??????<groupId>org.springframework.boot</groupId> ??????<artifactId>spring-boot-starter-web</artifactId> ????</dependency> ????<dependency> ??????<groupId>mysql</groupId> ??????<artifactId>mysql-connector-java</artifactId> ??????<version>5.1.39</version> ????</dependency> ????<dependency> ??????<groupId>com.alibaba</groupId> ??????<artifactId>druid</artifactId> ??????<version>1.1.8</version> ????</dependency> ????<dependency> ??????<groupId>org.apache.commons</groupId> ??????<artifactId>commons-lang3</artifactId> ??????<version>3.7</version> ????</dependency> ????<dependency> ??????<groupId>org.hibernate</groupId> ??????<artifactId>hibernate-validator</artifactId> ??????<version>5.2.4.Final</version> ????</dependency> ????<dependency> ??????<groupId>org.springframework.boot</groupId> ??????<artifactId>spring-boot-starter-data-redis</artifactId> ????</dependency> ????<dependency> ??????<groupId>org.mybatis.spring.boot</groupId> ??????<artifactId>mybatis-spring-boot-starter</artifactId> ??????<version>1.3.2</version> ????</dependency> ????<dependency> ??????<groupId>joda-time</groupId> ??????<artifactId>joda-time</artifactId> ??????<version>2.9.9</version> ????</dependency> ??</dependencies> ??<build> ????<plugins> ????????<plugin> ????????????<artifactId>maven-deploy-plugin</artifactId> ????????????<version>2.8.2</version> ????????</plugin> ??????<plugin> ????????<groupId>org.mybatis.generator</groupId> ????????<artifactId>mybatis-generator-maven-plugin</artifactId> ????????<version>1.3.5</version> ????????<dependencies> ??????????<dependency> ????????????<groupId>org.mybatis.generator</groupId> ????????????<artifactId>mybatis-generator-core</artifactId> ????????????<version>1.3.5</version> ??????????</dependency> ??????????<dependency> ????????????<groupId>mysql</groupId> ????????????<artifactId>mysql-connector-java</artifactId> ????????????<version>5.1.41</version> ??????????</dependency> ????????</dependencies> ????????<executions> ??????????<execution> ????????????<id>mybatis?generator</id> ????????????<phase>package</phase> ????????????<goals> ??????????????<goal>generate</goal> ????????????</goals> ??????????</execution> ????????</executions> ????????<configuration> ??????????<verbose>true</verbose> ??????????<overwrite>false</overwrite> ??????????<configurationFile> ????????????src/main/resources/mybatis-generator.xml ??????????</configurationFile> ????????</configuration> ??????</plugin> ??????<plugin> ????????<groupId>org.springframework.boot</groupId> ????????<artifactId>spring-boot-maven-plugin</artifactId> ??????</plugin> ????</plugins> ??</build> </project>
舉報(bào)
應(yīng)用SpringBoot快速搭建擁有用戶、商品、交易及秒殺活動(dòng)的電商秒殺應(yīng)用。
4 回答pom.xml中標(biāo)紅報(bào)錯(cuò)
2 回答pom.xml 無(wú)法自動(dòng)補(bǔ)全
1 回答 修改pom.xml文件時(shí)報(bào)錯(cuò)
3 回答我的pom.xml怎么不一樣
3 回答pom.xml提示信息沒(méi)有org.mybatis.generator
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2019-02-22