• .NET Core Web APi类库如何内嵌运行?


    话题

    我们知道在.NET Framework中可以嵌入运行Web APi,那么在.NET Core(.NET 6+称之为.NET)中如何内嵌运行Web Api呢,在实际项目中这种场景非常常见,那么我们本节以.NET 6.0作为演示示例一起来瞅瞅

    内嵌运行.NET Core Web APi

    接下来我们通过控制台作为主程序来启动Web APi,首先我们创建名为EmbedWebApi的控制台程序,然后创建Embed.WebApi类库运行Web APi,我们在此Web APi中创建如下接口,并实现相关方法来运行Web APi

    复制代码
    public class InitTest : IInitTest
    {
        public void Init()
        {
            var builder = WebApplication.CreateBuilder();
    
            builder.Services.AddControllers();
    
            var app = builder.Build();
    
            app.UseRouting();
    
            app.UseEndpoints(endpoints => 
            {
                endpoints.MapDefaultControllerRoute();
            });
    
            app.Run();
        }
    }
    
    public interface IInitTest
    {
        void Init();
    }
    复制代码

    通过写接口并在对应方法中运行Web APi主要是达到在控制中调用该接口进行模拟实现,这里需要注意一点的是,因为我们创建的Web APi是类库,要想使用Web里面的Api等等,直接在项目文件中添加如下一行以表明我们要引用框架,这样一来框架里面所包含的APi等等版本都一致统一,而不是通过NuGet一一下载,这是错误的做法

    
        "Microsoft.AspNetCore.App" />
    

    接下来我们在该类库中按照规范创建Controllers文件夹,并创建测试控制器,如下

    复制代码
    using Microsoft.AspNetCore.Mvc;
    
    namespace Embed.WebApi.Controllers
    {
        [ApiController]
        [Route("api/[controller]/[action]")]
        public class TestController : ControllerBase
        {
            [HttpGet]
            public IActionResult Test()
            {
                return Ok("Hello World");
            }
        }
    }
    复制代码

    最后我们在控制台程序中注册上述接口并调用初始化方法,如下:

    复制代码
    internal class Program
    {
        static void Main(string[] args)
        {
            var services = new ServiceCollection();
            
            services.AddTransient();
    
            var serviceProvider = services.BuildServiceProvider();
    
            var initTest = serviceProvider.GetRequiredService();
    
            initTest.Init();
    
            Console.Read();
        }
    }
    复制代码

    芜湖,我们通过Postman模拟调用测试接口,结果惊呆了,404了~~~

    当我们将类库中的控制器移动到控制台中,此时请求测试接口并成功返回对世界的问候,这是什么原因呢? 不难猜测可知,默认WebAPi控制器的激活以作为入口的主程序集进行查找激活。虽然这样看似解决了问题,假设调用嵌入运行的主程序是底层已经封装好的基础设施,那么岂不是遭到了代码入侵,所以我们就想在运行的Web APi类库里面去激活,此时我们想到将类库作为Web APi应用程序一部分应用手动加载并激活,在初始化方法里面修改为如下即可请求测试接口成功

    复制代码
    public class InitTest : IInitTest
    {
        private static readonly string AssemblyName = typeof(InitTest).Assembly.GetName().Name;
        public void Init()
        {
            var builder = WebApplication.CreateBuilder();
    
            builder.Services.AddControllers()
                .AddApplicationPart(Assembly.Load(new AssemblyName(AssemblyName)));
    
            var app = builder.Build();
    
            app.UseRouting();
    
            app.UseEndpoints(endpoints => 
            {
                endpoints.MapDefaultControllerRoute();
            });
    
            app.Run();
        }
    }
    复制代码

    上述直接在运行Web APi类库中添加控制器激活,这种场景完全限定于底层主入口已封装好,所以只能采用这种方式,若是主入口我们自己可控制,当然还有另外一种方式,来,我们瞧瞧截取的关键性源码

    复制代码
    /// 
    /// Populates the given  using the list of
    /// s configured on the
    /// .
    /// 
    /// The type of the feature.
    /// The feature instance to populate.
    public void PopulateFeature(TFeature feature)
    {
        if (feature == null)
        {
            throw new ArgumentNullException(nameof(feature));
        }
    
        foreach (var provider in FeatureProviders.OfType>())
        {
            provider.PopulateFeature(ApplicationParts, feature);
        }
    }
    
    internal void PopulateDefaultParts(string entryAssemblyName)
    {
        var assemblies = GetApplicationPartAssemblies(entryAssemblyName);
    
        var seenAssemblies = new HashSet();
    
        foreach (var assembly in assemblies)
        {
            if (!seenAssemblies.Add(assembly))
            {
                // "assemblies" may contain duplicate values, but we want unique ApplicationPart instances.
                // Note that we prefer using a HashSet over Distinct since the latter isn't
                // guaranteed to preserve the original ordering.
                continue;
            }
    
            var partFactory = ApplicationPartFactory.GetApplicationPartFactory(assembly);
            foreach (var applicationPart in partFactory.GetApplicationParts(assembly))
            {
                ApplicationParts.Add(applicationPart);
            }
        }
    }
    
    private static IEnumerable GetApplicationPartAssemblies(string entryAssemblyName)
    {
        var entryAssembly = Assembly.Load(new AssemblyName(entryAssemblyName));
    
        // Use ApplicationPartAttribute to get the closure of direct or transitive dependencies
        // that reference MVC.
        var assembliesFromAttributes = entryAssembly.GetCustomAttributes()
            .Select(name => Assembly.Load(name.AssemblyName))
            .OrderBy(assembly => assembly.FullName, StringComparer.Ordinal)
            .SelectMany(GetAssemblyClosure);
    
        // The SDK will not include the entry assembly as an application part. We'll explicitly list it
        // and have it appear before all other assemblies \ ApplicationParts.
        return GetAssemblyClosure(entryAssembly)
            .Concat(assembliesFromAttributes);
    }
    
    private static IEnumerable GetAssemblyClosure(Assembly assembly)
    {
        yield return assembly;
    
        var relatedAssemblies = RelatedAssemblyAttribute.GetRelatedAssemblies(assembly, throwOnError: false)
            .OrderBy(assembly => assembly.FullName, StringComparer.Ordinal);
    
        foreach (var relatedAssembly in relatedAssemblies)
        {
            yield return relatedAssembly;
        }
    }
    复制代码

    从上述源码可知,通过主入口程序集还会加载引用的程序集去查找并激活相关特性(比如控制器),当然前提是实现ApplicationPartAttribute特性,此特性必须在主入口程序集里定义,定义在程序集上,所以我们只需一行代码即可搞定,我们在控制台主入口命名空间顶部添加特性,引入Web APi类库程序集作为应用程序的一部分,如下:

    [assembly: ApplicationPart("Embed.WebApi")]

    那么接下来问题又来了,要是需要运行多个Web APi我们又当如何呢?按照上述方式一一添加未尝不可,我们也可以通过MSBuild任务来进行构建将相关特性自动添加到主入口程序集描述信息里面去,例如:

    复制代码
    
        "Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute">
            <_Parameter1>Embed.WebApi
        
    
    复制代码

    有的童鞋就问了,这不写死了么,那还不如通过添加特性的方式去处理,请注意这里只是使用示例,实际情况下,我们可将多个Web APi放在同一解决方案下,然后在此解决方案下创建可构建任务的.targets文件,并在主项目文件里引入,将程序集名称作为变量引入,剩下事情自行统一处理,若不清楚怎么搞,就在代码中使用特性方式也未尝不可,例如如下:

    复制代码
    
        "Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute">
            <_Parameter1>$(AssemblyName)
        
    
    复制代码

    总结

    本节我们重点讨论如何内嵌运行.NET Core Web APi类库,同时介绍了两种激活比如控制器特性方案, 希望对您有所帮助,谢谢,我们下节再会


    为了方便大家在移动端也能看到我分享的博文,现已注册个人公众号,扫描上方左边二维码即可,欢迎大家关注,有时间会及时分享相关技术博文。

    感谢花时间阅读此篇文章,如果您觉得这篇文章你学到了东西也是为了犒劳下博主的码字不易不妨打赏一下吧,让楼主能喝上一杯咖啡,在此谢过了!
    如果您觉得阅读本文对您有帮助,请点一下“推荐”按钮,您的“推荐”将是我最大的写作动力!
    本文版权归作者和博客园共有,来源网址:http://www.cnblogs.com/CreateMyself)/欢迎各位转载,但是未经作者本人同意,转载文章之后必须在文章页面明显位置给出作者和原文连接,否则保留追究法律责任的权利。
  • 相关阅读:
    颜值爆表!Redis官方可视化工具来啦,功能真心强大!
    MySQL 高级(进阶) SQL 语句 (一)
    Unity设计模式——外观模式
    【其他专题】好用的截图(包括动图gif)软件分享
    【转】iOS消息推送机制
    【K8S系列】kubadm部署k8s时service-cidr网络和pod-network-cidr的地址如何定义
    锐捷MSTP实验配置
    Flutter开发程序员兼职副业平台推荐
    JAVA中Function的使用
    Java数组详解
  • 原文地址:https://www.cnblogs.com/CreateMyself/p/16721269.html