使用annotation封装的jdbc,只要定义个借口,然后再某个方法上加个annotation,就可以操作数据库了,如: @Query("select * from user where id=?") public User getUser(int id) 不用实现具体方法,就可以用了。