1、注解使用@Select,如下修改UserDao接口方法
package com.shenqiang.dao;
import com.shenqiang.domain.User;
import org.apache.ibatis.annotations.Select;
import java.util.List;
public interface UserDao {
/**
* 查询所有用户
* @return
*/
@Select("select * from user") //使用注解
List<User> findAll();
}
2、修改SqlMapConfig.xml中配置,将source 修改为class。
<mappers>
<!--<mapper resource="com/shenqiang/dao/UserDao.xml"></mapper>-->
<mapper class="com.shenqiang.dao.UserDao" ></mapper>
</mappers>
3、注意:需要删除之前的UserDao.xml文件,否则会读取报错。