MyBatis从入门到进阶

ops/2024/11/14 12:48:13/

目录

  • MyBatis入门
    • 1、创建项目、数据准备
    • 2、数据库配置
    • 3、编写持久层代码
    • 单元测试
    • 打印日志
  • 基本操作
    • 查询数据
    • 插入数据
    • 删除数据
    • 更新数据
  • MyBatis - xml
    • 插入数据
    • 更新数据
    • 删除数据
    • 查询数据
    • #{}与${}
    • SQL注入
    • 排序
    • like查询
  • MyBatis进阶
    • if标签
    • trim标签
    • where标签
    • set标签
    • foreach标签
    • sql标签和include标签

MyBatis入门

MyBatis 是一个优秀的持久层框架,它支持定制化 SQL、存储过程以及高级映射。MyBatis 避免了几乎所有的 JDBC 代码和手动设置参数以及获取结果集的工作,通过使用简单的 XML 或注解来配置和映射原生信息,使开发者可以专注于编写 SQL 语句。

基本步骤:创建项目和准备数据、数据库配置、编写持久层代码

1、创建项目、数据准备

创建过程和SpringBoot项目一模一样,需要注意的是,下面两个一定选上
在这里插入图片描述

在数据库中创建对应的数据库和表:

-- 创建数据库
CREATE DATABASE mybatis_test DEFAULT CHARACTER SET utf8mb4;-- 使用数据数据
USE mybatis_test;-- 创建表[用户表]
DROP TABLE IF EXISTS user_info;
CREATE TABLE `user_info` (`id` INT ( 11 ) NOT NULL AUTO_INCREMENT,`username` VARCHAR ( 127 ) NOT NULL,`password` VARCHAR ( 127 ) NOT NULL,`age` TINYINT ( 4 ) NOT NULL,`gender` TINYINT ( 4 ) DEFAULT '0' COMMENT '1-男 2-女 0-默认',`phone` VARCHAR ( 15 ) DEFAULT NULL,`delete_flag` TINYINT ( 4 ) DEFAULT 0 COMMENT '0-正常, 1-删除',`create_time` DATETIME DEFAULT now(),`update_time` DATETIME DEFAULT now() ON UPDATE now(),PRIMARY KEY ( `id` ) 
) ENGINE = INNODB DEFAULT CHARSET = utf8mb4; -- 添加用户信息
INSERT INTO mybatis_test.user_info( username, `password`, age, gender, phone )
VALUES ( 'admin', 'admin', 18, 1, '18612340001' );
INSERT INTO mybatis_test.user_info( username, `password`, age, gender, phone )
VALUES ( 'zhangsan', 'zhangsan', 18, 1, '18612340002' );
INSERT INTO mybatis_test.user_info( username, `password`, age, gender, phone )
VALUES ( 'lisi', 'lisi', 18, 1, '18612340003' );
INSERT INTO mybatis_test.user_info( username, `password`, age, gender, phone )
VALUES ( 'wangwu', 'wangwu', 18, 1, '18612340004' );

对应Java中的实体类

java">@Data
@RestController
@RequestMapping
public class UserInfo {private Integer id;private String username;private String password;private Integer age;private Integer gender;private String phone;private Integer deleteFlag;private Date createDate;private Date updateDate;}

2、数据库配置

在yml文件中,添加如下的配置:

spring:datasource:url: jdbc:mysql://127.0.0.1:3306/mybatis_test?characterEncoding=utf8&useSSL=falseusername: rootpassword: '111111'driver-class-name: com.mysql.cj.jdbc.Driver

如果是properties格式的,配置如下:

#驱动类名称
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#数据库连接的url
spring.datasource.url=jdbc:mysql://127.0.0.1:3306/mybatis_test?
characterEncoding=utf8&useSSL=false
#连接数据库的⽤⼾名
spring.datasource.username=root
#连接数据库的密码
spring.datasource.password=111111

3、编写持久层代码

根据规范,一般是Controller层调用Service层接口,Service层调用Dao层接口:
在这里插入图片描述

在MyBatis中持久层又叫Mapper

Controller层:

java">@RestController
@RequestMapping("/user")
public class UserController {//注入UserService@Autowiredprivate UserService userService;@RequestMapping("/selectUserList")public List<UserInfo> selectUserList(){return userService.selectUserList();}
}

Service层:

java">@Service
public class UserService {@Autowiredprivate UserInfoMapper userInfoMapper;public List<UserInfo> selectUserList() {return userInfoMapper.selectAll();}
}

Dao层:

MyBatis持久层规范一般叫xxxMapper

java">@Mapper
public interface UserInfoMapper {@Select("select * from user_info")List<UserInfo> selectAll();
}

@Mapper注解:表示的是MyBatis中的Mapper接口

@Select注解:代表数据库的select操作

单元测试

如果按照:Controller层调用Service层接口,Service层调用Dao层接口这个规范来进行代码测试,未免有些麻烦,因为我们编写完代码之后,往往只是测试单独的某个功能。我们可以使用SpringBoot帮我们创建好的Test测试类来进行测试

在这里插入图片描述

在test目录中创建测试类,需要给类加上类注解@SpringBootTest注解,才能从Spring中获取Bean,给方法加上@Test注解,可以执行对应的方法。例如:

java">@SpringBootTest
class MyBatisDemoTests {@Testvoid TestFunc() {}}

IDEA自动生成测试类:右键–>Generate–>Test

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

打印日志

yml配置如下:

# 配置日志
mybatis:configuration: # 配置打印 MyBatis⽇志log-impl: org.apache.ibatis.logging.stdout.StdOutImpl

properties配置如下:

mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl

配置了上述信息后,会把sql语句以及执行的结果以日志的形式打印出来
在这里插入图片描述

基本操作

查询数据

使用@Select注解

1、通过参数传递

java">@Mapper
public interface UserInfoMapper {//通过参数传递@Select("select * from user_info where id=#{id}")UserInfo selectAll(Integer id);
}

注意:select操作可能返回多条数据,要使用List接收,如果只返回一条数据,使用对象接收即可

测试代码:

java">@SpringBootTest
class UserInfoMapperTest {@Autowiredprivate UserInfoMapper userInfoMapper;@Testvoid selectAll() {//使用foreach遍历,类似于for循环userInfoMapper.selectAll().forEach(x -> System.out.println(x));List<UserInfo> userInfos = userInfoMapper.selectAll();/*等价于下面代码for (UserInfo user:userInfos) {System.out.println(user);}*/}
}

如果参数只有一个,参数名可以不对应,(多个参数必须对应)例如:

java">@Mapper
public interface UserInfoMapper {@Select("select * from user_info where id=#{abc}")UserInfo selectById(Integer id);
}
java">@SpringBootTest
class UserInfoMapperTest {@Autowiredprivate UserInfoMapper userInfoMapper;@Testvoid selectById() {System.out.println(userInfoMapper.selectById(1));}
}

2、多个参数

MyBatis会根据参数名自动匹配

java">@Mapper
public interface UserInfoMapper {@Select("select * from user_info where id=#{id} and age =#{age}")UserInfo selectFunc(Integer age,Integer id);
}

3、参数重命名

MyBatis会给参数取名字,第一个参数取名为param1,第二个参数取名为param2…以此类推

java">@Mapper
public interface UserInfoMapper {@Select("select * from user_info where id=#{param1} and age =#{param2}")UserInfo selectFunc(Integer id,Integer age);
}

我们也可以自己重命名:

java">@Mapper
public interface UserInfoMapper {@Select("select * from user_info where id=#{id1} and age =#{age1}")UserInfo selectFunc(@Param("id1") Integer id,@Param("age1")Integer age);
}

最推荐的写法如下:

参数和注解的名称一致

java">@Mapper
public interface UserInfoMapper {@Select("select * from user_info where id=#{id} and age =#{age}")UserInfo selectFunc(@Param("id") Integer id,@Param("age")Integer age);
}

4、数据库的字段命名规范是统一小写字母,单词之间使用下划线分割,而java的规范是属性名称统一小驼峰。但是MyBatis是通过名称来映射的,如何让数据库字段和Java属性名映射起来?

方法1:使用@Results注解映射

java">@Mapper
public interface UserInfoMapper {//下划线命名法转换为驼峰命名法@Results(id = "map", value = {@Result(column = "delete_flag", property = "deleteFlag"),@Result(column = "create_time", property = "createTime"),@Result(column = "update_time", property = "updateTime")})//建立映射@Select("select * from user_info")List<UserInfo> selectAll2();@ResultMap("map")//注解复用@Select("select * from user_info")List<UserInfo> selectAll3();
}

方法2:通过配置实现,只需要添加下面的配置信息即可

mybatis:configuration: map-underscore-to-camel-case: true # 配置驼峰自动转换

插入数据

使用@Insert注解,获取参数直接使用对象的属性名

java">@Mapper
public interface UserInfoMapper {@Insert("insert into user_info(username,`password`,age,gender) values (#{username},#{password},#{age},#{gender})")Integer insertUserInfo(UserInfo userInfo);
}

测试代码:

java">@SpringBootTest
class UserInfoMapperTest {@Autowiredprivate UserInfoMapper userInfoMapper;@Testvoid insertUserInfo() {UserInfo userInfo = new UserInfo();userInfo.setId(11);userInfo.setAge(18);userInfo.setGender(1);userInfo.setUsername("z111");userInfo.setPassword("1234");userInfo.setPhone("1234567");userInfoMapper.insertUserInfo(userInfo);}
}

使用@Param注解,可以给对象重命名,重命名之后,需要通过点号获取

java">@Mapper
public interface UserInfoMapper {//对象重命名@Insert("insert into user_info(username,`password`,age,gender) values (#{Info.username},#{Info.password},#{Info.age},#{Info.gender})")Integer insertUserInfo2(@Param("Info") UserInfo userInfo);//返回值是影响的行数
}

测试代码:

java">@SpringBootTest
class UserInfoMapperTest {@Autowiredprivate UserInfoMapper userInfoMapper;@Testvoid insertUserInfo2() {UserInfo userInfo = new UserInfo();userInfo.setId(11);userInfo.setAge(18);userInfo.setGender(1);userInfo.setUsername("z222");userInfo.setPassword("1234");userInfo.setPhone("1234567");Integer i = userInfoMapper.insertUserInfo2(userInfo);System.out.println(i);}
}

使用@Options注解,获取主键:

java">@Mapper
public interface UserInfoMapper {@Options(useGeneratedKeys = true, keyProperty = "id")//@Insert("insert into user_info(username,`password`,age,gender) values (#{Info.username},#{Info.password},#{Info.age},#{Info.gender})")Integer insertUserInfo3(@Param("Info") UserInfo userInfo);//返回值:影响的行数
}

测试代码:

java">@SpringBootTest
class UserInfoMapperTest {@Autowiredprivate UserInfoMapper userInfoMapper;@Testvoid insertUserInfo3() {UserInfo userInfo = new UserInfo();userInfo.setId(10);userInfo.setAge(18);userInfo.setGender(0);userInfo.setUsername("abcd");userInfo.setPassword("13579");userInfo.setPhone("1234567");Integer i = userInfoMapper.insertUserInfo3(userInfo);System.out.println(i);}
}

删除数据

使用@Delete注解:

java">@Mapper
public interface UserInfoMapper {@Delete("delete from user_info where id = #{id}")Integer delete(Integer id);//返回值:影响的行数
}

测试代码:

java">@SpringBootTest
class UserInfoMapperTest {@Autowiredprivate UserInfoMapper userInfoMapper;@Testvoid delete() {userInfoMapper.delete(9);}
}

更新数据

使用@Update注解

java">@Mapper
public interface UserInfoMapper {@Update("update user_info set password = #{password} where id =#{id}")Integer update(Integer id, String password);
}

测试代码:

java">@SpringBootTest
class UserInfoMapperTest {@Autowiredprivate UserInfoMapper userInfoMapper;@Testvoid update() {userInfoMapper.update(1, "6666666");}
}

参数为对象:

java">@Mapper
public interface UserInfoMapper {@Update("update user_info set password = #{password} where id =#{id}")Integer update2(UserInfo userInfo);
}

测试代码:

java">@SpringBootTest
class UserInfoMapperTest {@Autowiredprivate UserInfoMapper userInfoMapper;@Testvoid update2() {UserInfo userInfo = new UserInfo();userInfo.setId(8);userInfo.setPassword("00000");userInfoMapper.update2(userInfo);}
}

MyBatis - xml

上述的基本操作都是基于注解的方式进行的,下面我们介绍使用xml的方式进行增删查改等基本操作

数据库配置信息还是一样

# 配置数据库信息
spring:datasource:url: jdbc:mysql://127.0.0.1:3306/mybatis_test?characterEncoding=utf8&useSSL=falseusername: rootpassword: "111111"driver-class-name: com.mysql.cj.jdbc.Driver

配置MyBatis xml文件路径

mybatis:mapper-locations: classpath:mapper/**Mapper.xml

表示在mapper路径下的,文件名以Mapper结束的xml文件,classpath指的是resources这个目录,例如:
在这里插入图片描述

插件安装:
在这里插入图片描述

安装好插件之后,可以实现接口和xml文件之间跳转,甚至可以帮我们根据接口中的方法自动生成对应xml的语句

在这里插入图片描述
在这里插入图片描述

定义接口:

java">@Mapper
public interface UserInfoXmlMapper {//查询List<UserInfo> queryAllUser();
}

对应xml文件:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.wpre.mybatisdemo2.mapper.UserInfoXmlMapper"><select id="queryAllUser" resultType="com.wpre.mybatisdemo2.model.UserInfo">select *from user_info</select></mapper>

在这里插入图片描述

resultType只有查询操作需要写,其他操作不需要

插入数据

使用insert标签,标签内写sql语句

<insert id="insertUser">insert into user_info(username, `password`, age, gender)values (#{username}, #{password}, #{age}, #{gender})
</insert>

对应的接口:

java">Integer insertUser(UserInfo userInfo);

测试类:

java">@Test
void insertUser() {UserInfo userInfo = new UserInfo();userInfo.setUsername("wpre");userInfo.setPassword("wpre");userInfo.setAge(18);userInfo.setGender(1);userInfoXmlMapper.insertUser(userInfo);
}

参数重命名:

java">Integer insertUser2(@Param("uf") UserInfo userInfo);
<insert id="insertUser2">insert into user_info(username, `password`, age, gender)values (#{uf.username}, #{uf.password}, #{uf.age}, #{uf.gender})
</insert>

重命名之后,需要通过点号获取

测试类:

java">@Test
void insertUser2() {UserInfo userInfo = new UserInfo();userInfo.setUsername("wpre");userInfo.setPassword("wpre");userInfo.setAge(18);userInfo.setGender(1);userInfoXmlMapper.insertUser2(userInfo);
}

返回自增id

java">Integer insertUser(UserInfo userInfo);
<insert id="insertUser3" useGeneratedKeys="true">insert into user_info(username, `password`, age, gender)values (#{uf.username}, #{uf.password}, #{uf.age}, #{uf.gender})
</insert>

测试类:

java">@Test
void insertUser() {UserInfo userInfo = new UserInfo();userInfo.setUsername("wpre");userInfo.setPassword("wpre");userInfo.setAge(18);userInfo.setGender(1);Integer result = userInfoXmlMapper.insertUser3(userInfo);System.out.println("影响行数"+result+"id:"+userInfo.getId());
}

更新数据

使用update标签

java">Integer updateUser(Integer id,String password);
<update id="updateUser">update user_infoset password = #{password}where id = #{id}
</update>

测试类:

java">@Test
void updateUser() {userInfoXmlMapper.updateUser(1, "12321");
}

删除数据

java">Integer deleteUserById(Integer id);
<delete id="deleteUserById">deletefrom user_infowhere id = #{id}
</delete>

测试类:

java">@Test
void deleteUserById() {userInfoXmlMapper.deleteUserById(1);
}

查询数据

java">List<UserInfo> queryAllUser();
<select id="queryAllUser" resultType="com.wpre.mybatisdemo2.model.UserInfo">select *from user_info
</select>

测试类:

java">@Test
void queryAllUser() {userInfoXmlMapper.queryAllUser();
}

xml同样会出现数据库字段名和Java中的属性名不匹配的问题

解决办法:

1、通过sql语句中的as取别名

例如

select delete_flag as deleteFlag,create_time as createTime,
from user_info;

2、建立映射关系

<resultMap id="BaseMap" type="com.wpre.mybatisdemo2.model.UserInfo"><id property="id" column="id"></id><result property="deleteFlag" column="delete_flag"></result><result property="createDate" column="create_date"></result><result property="updateDate" column="update_flag"></result>
</resultMap>

在这里插入图片描述

如果使用这种方式映射,建议把所有的字段都写上

使用映射来进行查询:

<select id="queryAllUser2" resultMap="BaseMap">select id, username, delete_flag, create_time, update_timefrom user_info
</select>

3、配置驼峰自动转换

mybatis.configuration.map-underscore-to-camel-case=true

#{}与${}

MyBatis的参数赋值有两种方式,一种是使用#符号,一种是使用$符号

#{}:

在这里插入图片描述

${}:
在这里插入图片描述

#{}是预编译SQL, 是即时 S Q L , {}是即时SQL, 是即时SQL{}是直接替换参数。一般情况下,能使用#尽量使用#。

SQL注入

SQL注入(SQL Injection)是一种常见的数据库攻击手段,它允许攻击者插入或“注入”一个或多个SQL语句到原本的查询中,欺骗数据库服务器执行非预期的命令。这种攻击利用了应用程序在构建SQL查询时对用户输入数据的不当处理。

例如:

select * from user_info where username = '';drop table user_info;--'
java">@Select("select * from user_info where username=${username}")
UserInfo selectById(String username);

如果是即时SQL,传递的参数如果是';drop table user_info;-- 这样一条SQL就变成两条SQL了,在不知不觉中你的表就已经被删除了

排序

结论:排序只能使用${}

java">//排序
@Select("select * from user_info order by id #{order};")
List<UserInfo> selectUsernameByOrder(String order);

测试类

java">@Test
void selectUsernameByOrder() {userInfoXmlMapper.selectUsernameByOrder("desc");
}

运行结果
在这里插入图片描述

使用的是#{}进行参数赋值,参数是String类型,此时默认加上单引号,所以我们必须使用${}进行参数赋值。

like查询

结论:使用${}

java">//like查询
@Select("select from user_info where username like '%${name}%' ")
List<UserInfo> selectByLike(String name);

模糊查询+CONCAT可以避免SQL注入问题

java">//like查询
@Select("select * from user_info where username like CONCAT('%','#{name}','%') ")
List<UserInfo> selectByLike(String name);

MyBatis进阶

if标签

java">Integer insertUserByCondition(UserInfo userInfo);
<insert id="insertUserByCondition">insert into user_info(username, `password`, age, <if test="gender!=null">gender</if>)values (#{username}, #{password}, #{age}, <if test="gender!=null">#{gender}</if>)
</insert>

测试类:

java">@Test
void insertUserByCondition() {UserInfo userInfo = new UserInfo();userInfo.setUsername("zhangsan");userInfo.setPassword("123");userInfo.setAge(18);userInfoXmlMapper.insertUserByCondition(userInfo);
}

表示的含义是:检查参数gender是否为null,如果参数gender为null,gender就不会被包含在这条SQL语句中;如果参数gender不为null,gender就会被包含在这条SQL语句中。上述测试类中并没有设置gender,gender为空,所以SQL语句为

insert into user_info(username, `password`, age,)
values (username, `password`, age,)

可以发现,上述的SQL语句是有语法错误的,age的后面多了一个逗号,何解?使用trim标签

trim标签

trim标签有4个属性,分别是:

prefix:增加前缀

suffix:增加后缀

prefixOverrides:去除前缀

suffixOverrides:去除后缀

使用方法:if标签嵌套在trim标签中

<trim ><if test=""></if>
</trim>

例如:

<insert id="insertUserByCondition">insert into user_info<trim prefix="(" suffix=")" suffixOverrides=","><if test="username!=null">username,</if><if test="password!=null">password,</if><if test="age!=null">age,</if><if test="gender!=null">gender,</if></trim>values<trim prefix="(" suffix=")" suffixOverrides=","><if test="username!=null">#{username},</if><if test="password!=null">#{password},</if><if test="age!=null">#{age},</if><if test="gender!=null">#{gender},</if></trim>
</insert>

如果逗号写在前面,则需要使用prefixOverrides

where标签

where标签的作用:

1、能够去除多余的and

2、当有查询条件时,生成where关键字

3、没有查询条件时,不生成where关键字

例如:

<select id="selectByCondition" resultType="com.wpre.mybatisdemo2.model.UserInfo">select *from user_info<where><if test="age!=null">age = #{age} and</if><if test="deleteFlag!=null">delete_flag = #{deleteFlag}</if></where>
</select>

set标签

set标签的作用:

1、添加set关键字

2、去除末尾的逗号

<update id="updateByCondition">update user_info<set><if test="username!=null">username=#{username},</if><if test="password!=null">password=#{password},</if><if test="gender!=null">gender=#{gender},</if></set><where>id = #{id}</where>
</update>

foreach标签

foreach标签处理的是如下SQL语句

delete from user_info where id in (10,11,12)

forecah属性如下:

1、collection:遍历的集合

2、separator:分隔符

3、item:元素的名称

4、open:以xx为开始

5、close:以xx为结束

例如:

java">Integer foreachDelete(List<Integer> ids);
<update id="foreachDelete">delete from user_info where id in<foreach collection="ids" separator="," item="id" open="(" close=")">#{id}</foreach>
</update>

测试类:

java">@Test
void foreachDelete() {userInfoXmlMapper.foreachDelete(List.of(10, 11, 12));
}

sql标签和include标签

sql标签可以把重复冗余的代码片段进行抽取,封装成一个SQL片段,通过使用include标签进行引用

例如:

<sql id="queryAllUser">id,username,age,gender,phone,delete_flag,create_time,update_time
</sql><select id="queryAllUser" resultType="com.wpre.mybatisdemo2.model.UserInfo">select<include refid="queryAllUser"></include>from user_info
</select>

本文结束,感谢阅读~


http://www.ppmy.cn/ops/133565.html

相关文章

Scala 的Map集合

Map集合有两种类型&#xff0c;可变的与不可变的&#xff0c;区别在于可变对象可以修改&#xff0c;而不可变对象不可以修改。默认情况下Scala使用不可变Map集合&#xff0c;如果需要使用可变Map集合&#xff0c;则需要显式地使用import导入包。在Scala中&#xff0c;可以同时使…

开源共建 | 长安链开发常见问题及规避

长安链开源社区鼓励社区成员参与社区共建&#xff0c;参与形式包括不限于代码贡献、文章撰写、社区答疑等。腾讯云区块链王燕飞在参与长安链测试工作过程中&#xff0c;深入细致地总结了长安链实际开发应用中的常见问题及其有效的规避方法&#xff0c;相关内容多次解答社区成员…

Linux下通过sqlplus连Oracle提示字符是乱码▒▒▒[

先参考https://www.cnblogs.com/wrencai/articles/4374451.html 理解下Oracle编码字符集的概念 如下图,刚开始连上是软吗▒▒▒[ 执行export NLS_LANGJAPANESE_JAPAN.AL32UTF8 (这个仅在当前会话起作用)如果好了,说明字符集是这个,不行在尝试别的字符集 如果要永久设置 vim …

Python练习19

Python日常练习 题目&#xff1a; 打印如下九九乘法表 1*11 2*12 2*24 3*13 3*26 3*39 4*14 4*28 4*312 4*416 5*15 5*210 5*315 5*420 5*525 6*16 6*212 6*318 6*424 6*530 6*636 7*17 7*214 7*321 7*428 7*535 7*642 7*749 8*18 8*216 8*324 8*432 8*540 8*648 8*756 8*86…

「QT」几何数据类 之 QVector4D 四维向量类

✨博客主页何曾参静谧的博客&#x1f4cc;文章专栏「QT」QT5程序设计&#x1f4da;全部专栏「VS」Visual Studio「C/C」C/C程序设计「UG/NX」BlockUI集合「Win」Windows程序设计「DSA」数据结构与算法「UG/NX」NX二次开发「QT」QT5程序设计「File」数据文件格式「PK」Parasolid…

java常用工具介绍

1. 集成开发环境&#xff08;IDE&#xff09;&#xff1a; • Eclipse&#xff1a;一个开放源代码的、基于Java的可扩展开发平台。它提供了一个框架和一组服务&#xff0c;用于通过插件组件构建开发环境。Eclipse 还包括用于Java开发的工具&#xff08;Java Development Tools,…

基于SpringBoot的垃圾分类回收系统+LW示例参考

1.项目介绍 系统角色&#xff1a;管理员、普通用户、回收员功能模块&#xff1a;管理员&#xff08;用户管理、回收员管理、垃圾类型管理、商品分类管理、环保商城管理、上门回收管理、订单分配管理、订单管理、系统管理等&#xff09;、回收员&#xff08;订单分配、订单管理…

人工智能理论之opencv图像预处理、数据库、GUI布局的综合应用(图像预处理版块)

文章目录 前言图像预处理卷积核概念图像平滑处理高斯滤波 双边滤波中值滤波Canny边缘检测图像形态学操作形态学梯度顶帽小结 图片预处理1.引入库 图像预处理错误尝试成功运行 总结 前言 对前面学习综合应用的总结&#xff0c;不单是一个版块&#xff0c;而是三个版块综合到一起…