- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
按照我在这个帖子中得到的建议 [ Ninject UOW pattern, new ConnectionString after user is authenticated我现在明白我不应该使用以下行...
var applicationConfiguration =
(IApplicationConfiguration)
DependencyResolver.Current.GetService(typeof(IApplicationConfiguration));
...作为服务定位器是一种反模式。
但在以下过程中,我如何实例化实现“IApplicationConfiguration”的具体对象,以便我可以使用该对象获取未知用户角色名称,或使用它来分配我的原则的“ApplicationConfiguration”属性?
Global.asax
public class MvcApplication : NinjectHttpApplication
{
/// <summary>
/// Handles the PostAuthenticateRequest event of the Application control.
/// </summary>
/// <param name="sender">The source of the event.</param>
/// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
protected void Application_PostAuthenticateRequest(Object sender, EventArgs e)
{
String[] roles;
var applicationConfiguration =
(IApplicationConfiguration)
DependencyResolver.Current.GetService(typeof(IApplicationConfiguration));
var identity = HttpContext.Current.User.Identity;
if (Request.IsAuthenticated)
{
roles = Roles.GetRolesForUser(identity.Name);
}
else
{
roles = new[] { applicationConfiguration.UnknownUserRoleName };
}
var webIdentity = new WebIdentity(identity, roles);
var principal = new WebsitePrincipal(webIdentity)
{
ApplicationConfiguration = applicationConfiguration
};
HttpContext.Current.User = principal;
}
.
.
.
}
分辨率映射代码
public class ApplicationConfigurationContractMapping : NinjectModule
{
public override void Load()
{
Bind<IApplicationConfiguration>()
.To<ApplicationConfiguration>();
}
}
应用配置
public class ApplicationConfiguration : IApplicationConfiguration
{
.
.
.
.
}
我使用 Ninject 作为我的依赖注入(inject)框架。任何建议表示赞赏。
编辑:完整代码可以在这里看到: https://github.com/dibley1973/Dibware.Template.Presentation.Web
最佳答案
您无法避免在 Application_PostAuthenticateRequest
中调用 DI 容器或对其进行抽象,但这应该不是问题,因为此 Application_PostAuthenticateRequest
可以被认为是你的一部分 Composition Root .或者换句话说:你必须在某个地方解决它。
但是,您的问题是此方法包含大量代码,而真正的问题是您缺少抽象。要解决此问题,请将此方法的所有逻辑提取到一个新类中并将其隐藏在抽象后面。剩下的就是下面的代码:
protected void Application_PostAuthenticateRequest(Object sender, EventArgs e)
{
var provider = (IPostAuthenticateRequestProvider)
DependencyResolver.Current.GetService(typeof(IPostAuthenticateRequestProvider));
provider.ApplyPrincipleToCurrentRequest();
}
代码可以由您的 DI 容器构建,并将具有以下签名:
public class MvcPostAuthenticateRequestProvider : IPostAuthenticateRequestProvider
{
private readonly IApplicationConfiguration configuration;
public MvcPostAuthenticateRequestProvider(IApplicationConfiguration configuration)
{
this.configuration = configuration;
}
public void ApplyPrincipleToCurrentRequest()
{
// ...
}
}
关于c# - 在这种情况下我如何不使用 DependencyResolver.Current.GetService(...),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23730159/
在我们的项目(Osgi、Spring-Dm、Apache-Felix)中,当 BundleContext.getService() 返回 null 时,我们在生产中遇到了一些问题。它很少发生,而且一开
我很难测试使用 .net 核心 ServiceProvider 返回给定一些逻辑的特定实现的工厂。 using (var scope = _serviceProvider.CreateScope())
我正在编写一个针对 dotnet core 框架 3.1 的应用程序。我使用依赖注入(inject)来配置数据库上下文等。在我的 Program.cs 中,我有以下代码: var host = new
我正在尝试使用 pendingintent 启动服务,这就是我正在尝试的方式 btnSave.setOnClickListener(new OnClickListener() { @O
我正在尝试在 android 上构建一个有效的 junit 测试套件。 由于我是 Junit 的新手,所以我不知道如何使用 ServiceTestCase 类。 我不知道如何让 getService(
我只是尝试 FirebaseAdmin SDK,当我在 Eclipse Java 中使用以下代码时, Storage storage = StorageOptions.getDefaultIn
我正在尝试通过调用以下两个服务函数通过蓝牙将设备与手机连接。第一个“mBluetoothGatt.getService(uuid)”和“BluetoothGattCharacteristic.getC
以下代码片段尝试创建连接到特定 rvd 的 Tib DaemonManager,然后查询该 rvd 的服务。 public static void main(String[] args) throws
按照我在这个帖子中得到的建议 [ Ninject UOW pattern, new ConnectionString after user is authenticated我现在明白我不应该使用以下行
我创建了一个 Action 过滤器来根据传入的 id 检查 id 是否正确。 过滤器的构造方法接受一个服务类型参数。 在 ActionMethod 运行之前,我需要服务来检查此 ID。但是 GetSe
getBroadcast和getService的requestCode的请求码可以一样吗?例如, Intent intent = new Intent(INTENT_FILTER); PendingI
我想通过外部 PHP 脚本在 phpfox 框架表中插入一些记录 phpfox_user 已应用reference .在表 phpfox_user 中注册用户从 phpfox 外部访问 php 库函数
您好,我正在使用带有 Java 扩展的 SmartFoxServer。在该扩展中,我正在尝试获取 firestore 实例。下面是我用来连接到在 IDE (Eclipse) 中运行良好的服务的代码。但
我正在实现一个新的 .NET Core 项目并为我的服务层进行依赖注入(inject)。我创建了一个实现 IServiceProvider 的接口(interface),现在必须实现 GetServi
在我的应用程序中,我传递助听器服务的 UUID 编号,如来自谷歌的 BLE 示例,即 0000a00-0000-1000-8000-00805f9b34fb 但是 getservice 返回 null
根据 this tutorial ,要在我的 Asp.net MVC 3 应用程序中使用 Ninject,我所要做的就是通过 Nuget 安装包并配置依赖项。 按照这些步骤操作 Install Pac
我正在尝试使用 TFS SDK 连接到 TFS 2010,但无法获得 VersionControlServer 服务。 var servers = RegisteredTfsConnections.G
我有接口(interface)IOrder和 FurnitureOrder实现它 我需要像这样注册多个实现 services.AddSingleton(IOrder, FurnitureOrder()
摘要 我一直在用ScriptApp.getService().getUrl()在我的 Google Apps 脚本项目中成功获取当前实例 (dev|prod) 一段时间了。截至昨天,返回值似乎完全取决
我有一个使用 Autofac 的 ASP.NET MVC 应用程序。 我已通过以下方式添加了适当的包: Install-Package Autofac Install-Package Autofac.
我是一名优秀的程序员,十分优秀!