| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <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>
- <parent>
- <groupId>com.zhentao</groupId>
- <artifactId>Marriage</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <artifactId>gateway</artifactId>
- <packaging>jar</packaging>
- <name>gateway</name>
- <url>http://maven.apache.org</url>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <!-- Spring Cloud Gateway -->
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-gateway</artifactId>
- </dependency>
- <!-- 移除Nacos服务发现依赖,网关直连转发到后端服务 -->
- <!-- Spring Boot Actuator -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-actuator</artifactId>
- </dependency>
- <!-- 网关不需要Redis依赖 -->
- <!-- Load balancer -->
- <!-- 直连无需LoadBalancer,可移除 -->
- <!-- 网关不需要数据库依赖 -->
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <version>${spring-boot.version}</version>
- <executions>
- <execution>
- <goals>
- <goal>repackage</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <jvmArguments>
- -Dnacos.remote.client.grpc.enabled=false
- -Dcom.alibaba.nacos.client.naming.cache.dir=${java.io.tmpdir}/nacos/naming
- </jvmArguments>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|