c# - 如何从 Nuget 包动态加载 Mvc Controller 。 Docker 容器问题

标签 c# asp.net-mvc docker .net-core

我有多个共享通用 MVC Controller 的微服务端点(网关)。我想将这些 Controller 提取到 Nuget 包中,以便它们可以在项目之间共享,并使用 FeatureManagement 启用/禁用 Controller /方法。

直接引用库(相同的解决方案)按预期工作。 Controller 程序集加载并通过以下代码添加:

services.AddMvc()
            .AddApplicationPart(Assembly.LoadFrom($"{Location}/{Configuration["ControllerLibrary"]}"))
            .SetCompatibilityVersion(CompatibilityVersion.Version_2_2);

我在将库提取到 Nuget 时遇到的第一个问题是 .dll。我必须将以下内容添加到 .csproj 文件中。

<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>

这有点重(全部复制)但可以接受,但也是第一个让我觉得我以错误的方式接近它的“代码味道”。

在 docker 容器内运行时会出现此问题,因为引用位置似乎与在 windows(IIS/IISExpress)/LXC 容器中运行时的引用位置不同。

在 docker 容器内运行(尝试运行)时,出现以下错误:

Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly '/app/xxx.xxx.Endpoints.Mvc.dll'. The system cannot find the file specified.at System.Runtime.Loader.AssemblyLoadContext.LoadFromPath(IntPtr ptrNativeAssemblyLoadContext, String ilPath, String niPath, ObjectHandleOnStack retAssembly)
at System.Runtime.Loader.AssemblyLoadContext.LoadFromAssemblyPath(String assemblyPath)
at System.Reflection.Assembly.LoadFrom(String assemblyFile)
at xxx.xxx.Client.Startup.ConfigureServices(IServiceCollection services) in /src/xxx.xxx.Client/Startup.cs:line 25
--- End of stack trace from previous location where exception was thrown ---
at Microsoft.AspNetCore.Hosting.ConventionBasedStartup.ConfigureServices(IServiceCollection services)
at Microsoft.AspNetCore.Hosting.Internal.WebHost.EnsureApplicationServices()
at Microsoft.AspNetCore.Hosting.Internal.WebHost.Initialize()
at Microsoft.AspNetCore.Hosting.WebHostBuilder.Build()
at xxx.xxx.Client.Program.Main(String[] args) in /src/xxx.xxx.Client/Program.cs:line 10

由于容器无法启动,我无法进入文件 director/bash 以查看发生了什么,但我知道 dll 不在我期望的位置(与正在执行的 dll 相同的位置)。

private static readonly string Location = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);

我是 Docker 的新手,但还没有找到任何能让我轻松调试问题的方法。

首先,我想找出不同行为的原因,以便更好地理解 docker 和任何可能的解决方案。此外,很高兴看到我是否以正确的方式处理这个问题,或者是否有更好的选择(开始感觉有点像黑客/复杂的解决方法)。

感谢您花时间阅读:)

最佳答案

嗯,这很尴尬。

问题原来是 docker 容器内的上下文没有访问 Nuget 提要(托管在 Azure Dev Ops 中)的权限。因此,找不到文件是因为恢复失败但没有导致中断/最终错误(它确实在控制台中列出了错误)。

原始帖子中的错误就是这种情况的一个症状,由于我没有足够仔细地检查控制台而变成了一个转移注意力的问题。

我需要添加一个 NuGet.config 文件(指针和用户/密码),以及将其复制到 docker 容器中正确位置 (dockerfile) 的引用。

然而,事情并没有结束,因为我们的私有(private) NuGet 服务器 (Azure Dev Ops) 似乎在某处为用户设置了一些奇怪的安全权限。我们最终需要使用管理员帐户(通过 key / token )才能最终使其正常工作。

关于c# - 如何从 Nuget 包动态加载 Mvc Controller 。 Docker 容器问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57804060/

相关文章:

c# - 使用数组进行独特行程选择的最佳性能算法?

c# - 如何禁用 ASP.NET MVC url 路由

c# - 如何在 ASP.NET MVC4 中渲染特定模型的 View ?

c# - 在Windows Vista/XP中重定向声音

c# - 使用反射通过对象递归并打印树

c# - 如何在不阻塞当前线程的情况下发布 HTTP 请求并等待回调?

docker - 如何使用 cookiecutter-django 修复 ACME 证书质询时出现 "Connection refused"错误

c# - 在您的项目中是否有任何您认为必不可少的 Action 过滤器?

ruby-on-rails - Docker未安装yarn

Docker "Gracefully stopping"本身在 `docker-compose up` 期间但不是 `docker-compose run --entrypoint`