“OpenFeign 无参接口调用”的版本间的差异
		
		
		
		
		
		跳到导航
		跳到搜索
		
				
		
		
	
Jihongchang(讨论 | 贡献)  (建立内容为“https://www.bilibili.com/video/BV1My4y1W7vy/?p=3”的新页面)  | 
				Jihongchang(讨论 | 贡献)   | 
				||
| 第1行: | 第1行: | ||
https://www.bilibili.com/video/BV1My4y1W7vy/?p=3  | https://www.bilibili.com/video/BV1My4y1W7vy/?p=3  | ||
| + | |||
| + | === pom.xml ===  | ||
| + | <syntaxhighlight lang="xml">  | ||
| + | <?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>io.github.jihch</groupId>  | ||
| + |     <artifactId>feign-demo</artifactId>  | ||
| + |     <version>1.0-SNAPSHOT</version>  | ||
| + | |||
| + |     <parent>  | ||
| + |         <groupId>org.springframework.boot</groupId>  | ||
| + |         <artifactId>spring-boot-starter-parent</artifactId>  | ||
| + |         <version>2.3.4.RELEASE</version>  | ||
| + |     </parent>  | ||
| + | |||
| + |     <properties>  | ||
| + |         <maven.compiler.source>8</maven.compiler.source>  | ||
| + |         <maven.compiler.target>8</maven.compiler.target>  | ||
| + |         <spring-cloud.version>Hoxton.SR8</spring-cloud.version>  | ||
| + |     </properties>  | ||
| + | |||
| + |     <dependencies>  | ||
| + |         <dependency>  | ||
| + |             <groupId>org.springframework.boot</groupId>  | ||
| + |             <artifactId>spring-boot-starter-web</artifactId>  | ||
| + |         </dependency>  | ||
| + | |||
| + |         <dependency>  | ||
| + |             <groupId>org.springframework.cloud</groupId>  | ||
| + |             <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>  | ||
| + |         </dependency>  | ||
| + | |||
| + |         <dependency>  | ||
| + |             <groupId>org.springframework.cloud</groupId>  | ||
| + |             <artifactId>spring-cloud-starter-openfeign</artifactId>  | ||
| + |         </dependency>  | ||
| + | |||
| + |         <dependency>  | ||
| + |             <groupId>org.springframework.boot</groupId>  | ||
| + |             <artifactId>spring-boot-starter-test</artifactId>  | ||
| + |             <scope>test</scope>  | ||
| + |             <exclusions>  | ||
| + |                 <exclusion>  | ||
| + |                     <groupId>org.junit.vintage</groupId>  | ||
| + |                     <artifactId>junit-vintage-engine</artifactId>  | ||
| + |                 </exclusion>  | ||
| + |             </exclusions>  | ||
| + |         </dependency>  | ||
| + |     </dependencies>  | ||
| + | |||
| + |     <dependencyManagement>  | ||
| + |         <dependencies>  | ||
| + |             <dependency>  | ||
| + |                 <groupId>org.springframework.cloud</groupId>  | ||
| + |                 <artifactId>spring-cloud-dependencies</artifactId>  | ||
| + |                 <version>${spring-cloud.version}</version>  | ||
| + |                 <type>pom</type>  | ||
| + |                 <scope>import</scope>  | ||
| + |             </dependency>  | ||
| + |         </dependencies>  | ||
| + |     </dependencyManagement>  | ||
| + | |||
| + | </project>  | ||
| + | </syntaxhighlight>  | ||
2023年3月21日 (二) 09:36的版本
https://www.bilibili.com/video/BV1My4y1W7vy/?p=3
pom.xml
<?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>io.github.jihch</groupId>
    <artifactId>feign-demo</artifactId>
    <version>1.0-SNAPSHOT</version>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.3.4.RELEASE</version>
    </parent>
    <properties>
        <maven.compiler.source>8</maven.compiler.source>
        <maven.compiler.target>8</maven.compiler.target>
        <spring-cloud.version>Hoxton.SR8</spring-cloud.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-openfeign</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>${spring-cloud.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
</project>