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.
MyBatis 3 在将 SQL 映射到/从的类中是否需要公共 setter(或 getter)?是否可以强制它使用反射?
我不久前尝试过,我认为它确实有效。那是在ibatis中。
mybatis 支持(并记录在案)的是构造函数注入。通过在 resultMap 中使用构造函数标签,您可以指定参数。您确实需要一个匹配的构造函数,这可能很烦人,但它允许您构建不可变对象并避免设置器。
http://www.mybatis.org/core/sqlmap-xml.html