2021
08-06
08-06
如何简单使用mybatis注解
目录使用注解开发使用注解完成CRUD使用注解开发本质:反射机制实现底层:动态代理1、注解在接口上的实现publicinterfaceUserMapper{@Select("select*fromuser")List<User>getUsers();}2、使用注解时,需要在核心配置文件中绑定接口<mappers><mapperclass="com.xiao.dao.UserMapper"/></mappers>3、测试使用publicclassUserMapperTest{@Testpublicvoidtest(){SqlSessionsqlSess...
继续阅读 >