Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有人可以向我解释使用 Transformers.aliasToBean() 或类 AliasToBeanResultTransformer 有什么区别?使用这两种做法有什么优点或缺点?
非常感谢
Transformers.aliasToBean() 的源代码是:
public static ResultTransformer aliasToBean(Class target) { return new AliasToBeanResultTransformer(target); }
所以它只是作为 AliasToBeanResultTransformer 的工厂方法。使用这个工厂方法或者直接调用 AliasToBeanResultTransformer 是严格等价的。