我已阅读并在其中搜索了所有内容,但似乎无法使其正常运行。我根据以下文章在MVC5应用程序中为Unity创建了一个自定义LifetimeManager
:
MVC3 Unity Framework and Per Session Lifetime Manager
This may be the issue I am experiencing
这是我的SessionLifetimeManager
public class SessionLifetimeManager : LifetimeManager
{
private string key = Guid.NewGuid().ToString();
public override object GetValue()
{
return HttpContext.Current.Session[key];
}
public override void RemoveValue()
{
HttpContext.Current.Session.Remove(key);
}
public override void SetValue(object newValue)
{
HttpContext.Current.Session[key] = newValue;
}
}
我只有几种类型在玩,这是UnityConfig.cs中的相关注册:
container.RegisterType<IEpiSession, EpiSession>(new SessionLifetimeManager(),
new InjectionConstructor(config.AppServerURI, config.PathToSysConfig));
container.RegisterType<IReportRepository, EpicorReportRepository>(new TransientLifetimeManager());
DependencyResolver.SetResolver(new UnityDependencyResolver(container));
请注意,
EpicorReportRepository
通过构造函数注入依赖于IEpiSession
。public class EpicorReportRepository : IReportRepository
{
private IEpiSession session;
// DI constructor
public EpicorReportRepository(IEpiSession session) {
this.session = session;
}
// ...
}
我的问题:第一个用户/会话连接到应用程序后,此后的每个新用户/会话似乎仍在使用第一个用户为其创建/注入的
EpiSession
对象和凭据。这似乎是互连网上使用的一种常见模式,所以我想知道我缺少什么。 最佳答案
您如何测试IEpiSession
在不同的Session
中是否相同?
尝试从其他浏览器打开应用程序。如果在同一浏览器中打开多个选项卡,则使用相同的会话。
我检查了您的代码,它对我有用。SetResolver()
仅有一个区别:
DependencyResolver.SetResolver(
type => container.Resolve(type),
types => container.ResolveAll(types));
完整的注册码如下:
public class MvcApplication : System.Web.HttpApplication
{
protected void Application_Start()
{
...
var container = new UnityContainer();
container.RegisterType<IEpiSession, EpiSession>(
new SessionLifetimeManager(),
new InjectionConstructor("config.AppServerURI", "config.PathToSysConfig"));
container.RegisterType<IReportRepository, EpicorReportRepository>(new TransientLifetimeManager());
DependencyResolver.SetResolver(
type => container.Resolve(type),
types => container.ResolveAll(types));
}
}