Windsor 和 asp.net MVC 单例竞争条件
关于在 Windsor 中使用 Singleton 生活方式和 Asp.Net MVC 的快速问题。 如果以下课程被注册为单例,我认为我会出现竞争条件是否正确?
public class UserMapper : IMap
{
public void Map(MyDto dto, MyDomain domain)
{
domain.Username = dto.Username;
domain.Firstname = dto.Firstname;
domain.Surname = dto.Surname;
domain.Password = dto.Password;
}
}
Quick question regarding the use of Singleton lifestyle in Windsor, and Asp.Net MVC.
If the following class is registered as a singleton am I correct in thinking that I will have a race condition?
public class UserMapper : IMap
{
public void Map(MyDto dto, MyDomain domain)
{
domain.Username = dto.Username;
domain.Firstname = dto.Firstname;
domain.Surname = dto.Surname;
domain.Password = dto.Password;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的
UserMapper
中没有任何数据 -Map
方法中的所有内容都依赖于为其提供的参数,使得该方法可重入,因此可以安全地作为单例使用。Your
UserMapper
does not have any data in it - everything in theMap
method relies on parameters given to it, making the method reentrant and thus safe to use as a singleton.