hibernate 如何实现类似mybatis的动态sql?


比如说mybatis中可以根据某个参数是否为空来决定是否需要某个sql片段


 <if test='arg != NULL'>
    and field=#{arg}
</if>

这样,不知道hibernate中有神马好的办法实现这样的功能?

hibernate mybatis

口嫌体正直君 9 years, 2 months ago

Your Answer