一、前言
最近使用 AutoMapper
的时候,一段时间久会产生 System.NullReferenceException:未将对象引用设置到对象的实例。
这个问题。后来通过测试,发现部署在 IIS
上的站点,默认情况下,IIS会在每个间隔固定时间回收 AppPool
,如果刚刚好有很多请求访问调用了 AutoMapper
映射的接口,就会产生如下问题。
System.NullReferenceException: 未将对象引用设置到对象的实例。 在 AutoMapper.TypeMapFactory.<>c__DisplayClass3_0.<MapDestinationPropertyToSource>b__0(IMemberConfiguration _) 在 System.Linq.Enumerable.Any[TSource](IEnumerable`1 source, Func`2 predicate) 在 AutoMapper.TypeMapFactory.CreateTypeMap(Type sourceType, Type destinationType, IProfileConfiguration options, MemberList memberList) 在 AutoMapper.ConfigurationStore.<>c__DisplayClass80_0.<CreateTypeMap>b__0(TypePair tp) 在 System.Collections.Concurrent.ConcurrentDictionary`2.GetOrAdd(TKey key, Func`2 valueFactory) 在 AutoMapper.ConfigurationStore.CreateMap[TSource,TDestination](String profileName, MemberList memberList) 在 PaymentPlatform.Test.AutoMapperTest.ProcessRequest(HttpContext context)
二、解决方案
方法一
打开对应IIS站点的应用程序池,点击 高级设置
。如下图:
将上图中的 固定时间间隔(分钟)
设置为0.
方法二
可在全局的 Application_Start
中,定义所有的 AutoMapper
类型映射。这样就可以保证映射关系的一次性初始化。后续代码无需再定义,只需关注对象转换就可以了。
方法三
也可使用AutoMapper扩展这种方式进行使用,对于不存在的配置,自动创建相关的映射。
注:本文内容来自互联网,旨在为开发者提供分享、交流的平台。如有涉及文章版权等事宜,请你联系站长进行处理。