代码拉取完成,页面将自动刷新
<?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>org.example</groupId>
<artifactId>springCloudAndAlibaba</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<!--聚合pom 不一定非要在子项目写parent-->
<modules>
<module>springCloud</module>
<module>springCloudAlibaba</module>
</modules>
<properties>
<!-- 覆盖spring-boot-starter-parent 里面的mysql 的8版本 -->
<java.version>1.8</java.version>
<mysql.version>5.1.3</mysql.version>
<ssmplus.version>1.0-SNAPSHOT</ssmplus.version>
</properties>
<!--子项目依赖版本声明-->
<dependencyManagement>
<dependencies>
</dependencies>
</dependencyManagement>
<parent>
<groupId>org.springframework.boot</groupId> <!--ctrl +鼠标左键点击去-->
<artifactId>spring-boot-starter-parent</artifactId>
<!-- <version>2.3.4.RELEASE</version>-->
<version>2.1.9.RELEASE</version>
<!-- 作用是啥,不写这个 feign 就用不了-->
<!-- 优先本地获取仓库 所以feign package 之后, order-service 就能找到了 。。。 不一定对-->
<relativePath/>
</parent>
<!--子项目继承的依赖-->
<dependencies>
<!--内置了很多依赖,有的我们放到这边直接用的时候不需要写 version标签-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<!--这里也能写 排除一些依赖 比如tomcat 然后去换成starter-jetty-->
<exclusions>
<!-- <exclusion>
<groupId></groupId>
<artifactId></artifactId>
</exclusion>
<exclusion>
<groupId></groupId>
<artifactId></artifactId>
</exclusion>-->
</exclusions>
</dependency>
</dependencies>
<build>
<plugins>
<!--Maven运行clean 、package,把helloworld工程项目的打包成jar包,打包好的jar包被生成在helloworld工程项目的target文件夹内。
用cmd运行java -jar boot-01-helloworld-1.0-SNAPSHOT.jar,既可以运行helloworld工程项目。将jar包直接在目标服务器执行即可。-->
<!-- <plugin>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-maven-plugin</artifactId>-->
<!-- </plugin>-->
<!--不打包exclude 什么 -->
<!-- <plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>-->
</plugins>
<!--资源路径 了解-->
<resources>
<resource>
<directory>${project.basedir}/src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<!--测试资源路径-->
<testResources>
<testResource>
<directory>${project.basedir}/src/test/resources</directory>
<filtering>true</filtering>
</testResource>
</testResources>
</build>
<!--
https://maven.aliyun.com/repository/public。通过这个配置,Maven在构建项目时会从该仓库中下载所需的依赖项。
其中,releases块中的enabled元素设置为true,表示可以获取已发布的稳定版本。-->
<repositories>
<repository>
<id>public</id>
<name>aliyun nexus</name>
<url>https://maven.aliyun.com/repository/public</url>
<releases>
<enabled>true</enabled>
</releases>
</repository>
</repositories>
<!--指定插件下载地址-->
<pluginRepositories>
<pluginRepository>
<id>public</id>
<name>aliyun nexus</name>
<url>https://maven.aliyun.com/repository/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。