我有一个工厂类,我想知道是否可以将AnimalMapper
工厂类注入到其他需要它的 bean 中?
AnimalMapper 工厂类
public static Mapper create(final String type) {
if (type.equalsIgnoreCase("dog")) {
return new DogMapper();
} else if (type.equalsIgnoreCase("cat")) {
return new CatMapper();
} ...
}
目前我正在使用AnimalMapper.create(...)