最开始的代码

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Reflection;
  7.  
  8. using AutoMapper;
  9.  
  10. using Happy.ExtentionMethods;
  11. using Happy.Bootstrap;
  12.  
  13. namespace Happy.Bootstrap.AutoMapper
  14. {
  15. /// <summary>
  16. /// 自动添加配置。
  17. /// </summary>
  18. public class AutoAddProfilePlugin : IBootstrapPlugin
  19. {
  20. /// <inheritdoc />
  21. public void Start(IBootstrapService bootstrapService, Assembly assembly)
  22. {
  23. bootstrapService.MustNotNull("bootstrapService");
  24. assembly.MustNotNull("assembly");
  25.  
  26. foreach (var type in assembly.GetTypes())
  27. {
  28. if (type.IsAbstract || type.IsInterface)
  29. {
  30. continue;
  31. }
  32.  
  33. if (typeof(Profile).IsAssignableFrom(type))
  34. {
  35. Mapper.Initialize(x => {
  36. x.AddProfile(Activator.CreateInstance(type) as Profile);
  37. });
  38. }
  39. }
  40. }
  41. }
  42. }

问题

我的项目中,每个 dll 都是自描述的,系统启动的时候,对每个 dll 对执行上面的插件,结果, Mapper.Initialize() 只有最后一次配置才有效,前面的配置会丢失。

最后的代码

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. using System.Reflection;
  7.  
  8. using AutoMapper;
  9.  
  10. using Happy.ExtentionMethods;
  11. using Happy.Bootstrap;
  12.  
  13. namespace Happy.Bootstrap.AutoMapper
  14. {
  15. /// <summary>
  16. /// 自动添加配置。
  17. /// </summary>
  18. public class AutoAddProfilePlugin : IBootstrapPlugin
  19. {
  20. /// <inheritdoc />
  21. public void Start(IBootstrapService bootstrapService, Assembly assembly)
  22. {
  23. bootstrapService.MustNotNull("bootstrapService");
  24. assembly.MustNotNull("assembly");
  25.  
  26. foreach (var type in assembly.GetTypes())
  27. {
  28. if (type.IsAbstract || type.IsInterface)
  29. {
  30. continue;
  31. }
  32.  
  33. if (typeof(Profile).IsAssignableFrom(type))
  34. {
  35. Mapper.AddProfile(Activator.CreateInstance(type) as Profile);
  36. }
  37. }
  38. }
  39. }
  40. }

AutoMapper: Mapper.Initialize() 只能调用一次,Why?的更多相关文章

  1. AutoMapper.Mapper.CreateMap报“System.NullReferenceException: 未将对象引用设置到对象的实例。”异常复现

    >>Agenda: >>Ⅰ.国庆假期问题出现 >>Ⅱ.双休日异常再次出现 >>Ⅲ.排障 >>Ⅳ.异常复盘 >>Ⅴ.修复后监测 & ...

  2. load 与initialize的调用顺序小结

    开发中实用方法固然是最贴近应用的,当一些程序原理还是要先搞清晰,根据查找的一些资料,总结了一些load与initialize的调用. APP启动到执行main函数之前,程序就执行了很多代码   执行顺 ...

  3. OkHttp踩坑记:为何 response.body().string() 只能调用一次?

    想必大家都用过或接触过 OkHttp,我最近在使用 Okhttp 时,就踩到一个坑,在这儿分享出来,以后大家遇到类似问题时就可以绕过去. 只是解决问题是不够的,本文将 侧重从源码角度分析下问题的根本, ...

  4. jsonp 跨域只能调用一次ajax(无法多次调用或者循环调用)

    jsonp 跨域只能掉用一次ajax(无法多次调用或者循环调用) 百度搜索关键字:jsonp 只能调用一次ajax 解决方法 //回调函数设置,给后台执行        window[callback ...

  5. mapreduce中reduce中的迭代器只能调用一次。其实迭代器就只能调用一次

    亲测,只能调用一次,如果想想在一次reduce重复使用迭代器中的数据,得先取出来放在list中然后在从list中取出来!!多次读取reduce函数中迭代器的数据 public static void ...

  6. 拦截器中,request中getReader()和getInputStream()只能调用一次,构建可重复读取inputStream的request.

    由于 request中getReader()和getInputStream()只能调用一次 在项目中,可能会出现需要针对接口参数进行校验等问题. 因此,针对这问题,给出一下解决方案 实现方法:先将Re ...

  7. +load和+initialize方法调用时机

    一.+load方法什么时候调用 +load方法会在runtime加载类.分类时调用(程序运行起来会先去加载调用+load 跟你引用没有引用其头文件没有关系).每个类.分类的+load,在程序运行过程中 ...

  8. ServletRequest中getReader()和getInputStream()只能调用一次的解决办法

    转载:http://blog.sina.com.cn/s/blog_870cd7b90101fg58.html 最近使用spring mvc做项目,数据格式是json,有一个功能是实现记录请求的参数, ...

  9. ServletRequest中getReader()和getInputStream()只能调用一次的解决办法(转)

    原文地址:http://liwx2000.iteye.com/blog/1542431 原文作者:liwx2000 为了提高项目安全性,拦截非法访问,要给项目增加了一个过滤器,拦截所有的请求,校验是否 ...

随机推荐

  1. JavaScript闭包与变量的经典问题

    许多人第一次接触闭包大概都是从高程里这段代码开始的: function createFunctions() { var result = new Array(); for(var i=0; i< ...

  2. sicily 1046. Plane Spotting(排序求topN)

    DescriptionCraig is fond of planes. Making photographs of planes forms a major part of his daily lif ...

  3. Kaldi 安装

    以后要重点搞caldi了,虽然集群上有,但还是本地安装一下吧. 参考   Kaldi 学习手记(一):Kaldi 的编译安装   在 ubuntu 下安装 kaldi 基本步骤 两个文章基本差不多 1 ...

  4. UtraEdit正则表达式替换.def

    * (?   替换(?结尾 ),*$  替换),开头

  5. LoadRunner FAQ

    LoadRunner FAQ web_concurrent_start和web_concurrent_end web_concurrent_start 语法: int web_concurrent_s ...

  6. JavaScript对象参考手册

    1.array 属性: constructor 返回原型函数: length 数组个数: prototype 向对象添加属性和方法 方法: concat() 连接两个或多个数组,并返回结果: fill ...

  7. Mac下安装Docker

    1.去"https://docs.docker.com/docker-for-mac/"下载安装包  2.根据提示安装下载好的Docker.dmg 3.运行Docker 4.在终 ...

  8. 02:实现Singleton模式

    Java实现单例模式有很多种实现方法,其中我们应根据需要选择线程安全的与非线程安全的两种方式,根据对象实现的方式又分为饱汉与饿汉方式. 这里使用java中的volatile关键字与synchroniz ...

  9. gdg shell

    export TIMESTAMP=`date +%Y%m%d_%H%M%S`GDGFILE=file1_${TIMESTAMP}.txtsuffix=${GDGFILE#*_}prefix=${suf ...

  10. LINUX按键驱动程序

    <<混杂设备驱动模型>> <混杂设设备的描述> <混在设备的概念> 在linux系统中,存在一类字符设备,他们拥有相同的主设备号(10),但是次设备号不 ...