Skip to content

zhouxiaoxiang/version

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Oriole

Dream Begins

English, 日本語, 简体中文

A unified java api version management module of SpringCloud-based microservices.

Stargazers repo roster for @zhouxiaoxiang/version

Demo

Usage

pom.xml

<dependency>
    <groupId>top.zhouxiaoxiang</groupId>
    <artifactId>oriole</artifactId>
    <version>1.1.1</version>
</dependency>

controller

@RestController
@RequestMapping
@V(2)
public class DemoController {
    @GetMapping
    public Boolean get() {
        return true;
    }
}

navigate

  • right

http://localhost:8080/v2/

  • wrong

http://localhost:8080/v1/