欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

.Net Core Api 使用版本控制

程序员文章站 2023-04-06 21:36:57
1,安装Microsoft.AspNetCore.Mvc.Versioning NET Core Mvc中,微软官方提供了一个可用的Api版本控制库Microsoft.AspNetCore.Mvc.Versioning。 2,修改Startup类 这里我们需要在Startup类的ConfigureS ......

1,安装microsoft.aspnetcore.mvc.versioning

net core mvc中,微软官方提供了一个可用的api版本控制库microsoft.aspnetcore.mvc.versioning。
.Net Core Api 使用版本控制

2,修改startup类

这里我们需要在startup类的configureservice方法中添加以下代码。

        // this method gets called by the runtime. use this method to add services to the container.
        public void configureservices(iservicecollection services)
        {
            services.addmvc().setcompatibilityversion(compatibilityversion.version_2_1);
            services.addapiversioning(o =>
            {
                o.reportapiversions = true;
                o.assumedefaultversionwhenunspecified = true;
                o.defaultapiversion = new apiversion(1, 0);
                //o.apiversionreader = new headerapiversionreader("x-api-version");
            });
        }

3,代码

    //版本1控制器
    [apiversion("1.0", deprecated = true)]
    [route("api/values")]
    [apicontroller]
    public class valuesv1controller : controllerbase
    {
        [httpget]
        public ienumerable<string> get()
        {
            return new string[] { "这是版本1.0返回的——数据1", "这是版本1.0返回的——数据2" };
        }
    }

 

    //版本2控制器
    [apiversion("2.0")]
    [route("api/values")]
    [apicontroller]
    public class valuesv2controller : controllerbase
    {
        [httpget]
        public ienumerable<string> get()
        {
            return new string[] { "这是版本2.0返回的——数据1", "这是版本2.0返回的——数据2" };
        }
    }

 

4,访问

https://localhost:44319/api/values

.Net Core Api 使用版本控制

https://localhost:44319/api/values?api-version=1.0

.Net Core Api 使用版本控制

https://localhost:44319/api/values?api-version=2.0

.Net Core Api 使用版本控制