在测试时报错:There is no getter for property named'tj' in 'class java.lang.String' 问题分析:Mybatis默认采用ONGL解析参数,所以会自动采用对象树的形式取string.tj值,引起报错。 解决方法: public ListmethodName(@Param(value="tj") String tj);说明参数值。