先看:
Mybatis进阶1-CSDN博客
Mybatis进阶2-CSDN博客
mybatis注解开发
前置:不需要xxxMapper..xml文件(映射文件)
在核心配置文件中:<mappers>标签只能使用:<package name="扫描的包"/>;
@Insert注解
@Insert("插入的sql语句")
BrandMapper接口:
/**** @param brand 品牌类型* @return 返回受改变的行数*/@Insert("insert into brand(name, people, status) VALUE (#{name},#{people},#{status})")public int addBrand(Brand brand);
测试:
@Testpublic void testaddBrand(){SqlSession sqlSession=MybatisUtil.openSession();BrandMapper mapper = sqlSession.getMapper(BrandMapper.class);Brand brand=new Brand();brand.setName("小米");brand.setPeople(200);brand.setStatus(1);int i = mapper.addBrand(brand);if(i>0){System.out.println("添加成功");sqlSession.commit();}sqlSession.close();}
结果:
可见注解开发不用写Mapper.xml(映射文件)
@Select注解
BrandMapper接口:
/*** 查询所有品牌信息* @return 返回品牌数组*/@Select("select id, name, people, status from brand;")public List<Brand> findAllBrand();/*** 根据品牌id查询某个品牌的全部信息* @param id 要查询品牌的id* @return 返回某个品牌对象*/@Select("select id, name, people, status from brand where id=#{id};")public Brand findBrandById(int id);/*** 根据多条件查询数据* @param name 品牌名* @param status 品牌状态* @return 返回品牌对象*/@Select("select id, name, people, status from brand where name=#{name} and status=#{status};")public Brand findByCondition(@Param("name") String name, @Param("status") int status);
主键回填
/**** @param brand 品牌类型* @return 返回受改变的行数*/@Insert("insert into brand(name, people, status) VALUE (#{name},#{people},#{status})")@Options(useGeneratedKeys = true,keyColumn = "id",keyProperty = "id")public int addBrand(Brand brand);
keyColumn是主键字段名字,keyProperty是Brand类的成员变量
当查询结果中的列名和实体类的属性名不一致时@Results
1.在SQL语句中,给列名起别名
2.在核心配置文件中,配置驼峰映射(解决下划线)
3.使用resultMap标签,设置查询结果和实体类的映射关系
4.(注解方法):使用@Results注解
/*** 根据品牌id查询某个品牌的全部信息* @param id 要查询品牌的id* @return 返回某个品牌对象*/@Select("select id as brand_id, name, people, status from brand where id=#{id};")@Results(id="BrandMap",value= {@Result(column = "brand_id",property = "id",id = true),//id属性是表明该字段是主键@Result(column = "name",property = "name")})public Brand findBrandById(int id);
模糊查询
select id, name, people, status from brand where name like '%华%'; select id,name,people,status from brand where name like concat('%','华','%');
这两种方法都可以进行模糊查询,但是在java开发中,我们使用第二种,这样才可以使用
#{key}的方式取值。
/*** 通过name模糊查询* @param name 要查询的名字* @return 返回Brand对象数组*/@Select("select id,name,people,status from brand where name like concat('%',#{name},'%')")public List<Brand> findBrandByLike(String name);
测试
@Testpublic void testFindBrandByLike(){SqlSession sqlSession = MybatisUtil.openSession();BrandMapper mapper = sqlSession.getMapper(BrandMapper.class);List<Brand> brands = mapper.findBrandByLike("华");for (Brand brand : brands) {System.out.println(brand);}}
动态sql
我们要模糊查询某个品牌的名字,如果没有输入名字,,就查询status为1的所有品牌名
这个需求就需要使用动态SQL语句了
我们需要在dao层新创建一个MySqlProvider类
public class MySqlProvider {public String findNameByLike( String name)//拼接字符串{String sql="select id, name, people, status from brand where status=1 ";if(name!=null&&!(name.equals(""))){sql+=" and name like concat('%',#{name},'%')";}return sql;} }
BrandMapper接口
@SelectProvider(type = MySqlProvider.class,method = "findNameByLike")//接收组装后的sql语句public List<Brand> findBrandByLike( String name);
@selectProvider源码
@Documented @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.METHOD}) public @interface SelectProvider {Class<?> type();String method() default ""; }
测试
@Testpublic void testFindBrandByLike(){SqlSession sqlSession = MybatisUtil.openSession();BrandMapper mapper = sqlSession.getMapper(BrandMapper.class);List<Brand> brands = mapper.findBrandByLike(null);for (Brand brand : brands) {System.out.println(brand);}}
结果:
权限管理
1.权限 //相当于 职责
2.用户 //相当于 职员(职员就职于一个职位)
3.角色 //相当于 职位(有多个职责)
权限管理基础表:权限表,用户表,角色表
问题1:一个用户可以有多个角色吗 y
问题2:一个角色可以被多个用户使用吗 y
问题3:一个角色可以有多个权限吗 y
问题4:一个权限可以被多个角色使用 y
权限管理需要的表:用户表<=用户角色表=>角色表<=角色权限表=>权限表
这就是权限5张表