SSM整合(XML方式)

news2024/11/24 4:55:59

文章目录

  • SSM整合之后xml方式
  • 1 系统环境
    • 1.1 软件环境
    • 1.2 项目环境
    • 1.3 配置web.xml
    • 1.4 配置jdbc.properties文件
    • 1.5 配置SpringMVC核心文件
    • 1.6 配置Spring的核心文件
    • 1.7 配置MyBatis的核心文件
    • 1.8 配置数据库
    • 1.9 配置文件位置
  • 2 编写后端代码
    • 2.1 编写实体类
    • 2.2 编写Dao接口
    • 2.3 编写Dao映射文件(resource目录下)
    • 2.4 编写Service接口
    • 2.5 编写ServiceImpl实现类
    • 2.6 编写Controller类
    • 2.7 代码映射文件位置
  • 3 编写前端代码
    • 3.1 编写首页index.jsp
    • 3.2 配置Tomcat
    • 3.3 webapp下配置图片
    • 3.4 编写功能页面WEB-INF下
  • 4 运行访问
    • 4.1 请求路径
    • 4.2 增删改查界面
    • 4.3 项目源代码

SSM整合之后xml方式

1 系统环境

1.1 软件环境

软件版本:
IDEA 2021.3
Maven 3.6.3
MySql (Mariadb) 10.10
JDK 1.8

1.2 项目环境

1、创建Maven的web工程
在这里插入图片描述
2、引入pom依赖

 <dependencies>
        <!--servlet的依赖-->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <version>4.0.1</version>
            <scope>provided</scope>
        </dependency>
        
        <!--jsp的依赖-->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.0</version>
        </dependency>

        <!--JSTL表达式-->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>

        <!--SpringWeb-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-webmvc</artifactId>
            <version>5.3.1</version>
        </dependency>

        <!--spring事务-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-tx</artifactId>
            <version>5.3.1</version>
        </dependency>

        <!--jsckson的依赖-->
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-core</artifactId>
            <version>2.14.2</version>
        </dependency>
        <dependency>
            <groupId>com.fasterxml.jackson.core</groupId>
            <artifactId>jackson-databind</artifactId>
            <version>2.14.2</version>
        </dependency>

        <!--mybatis的依赖-->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis</artifactId>
            <version>3.5.13</version>
        </dependency>
        
        <!--spring整合mybatis-->
        <dependency>
            <groupId>org.mybatis</groupId>
            <artifactId>mybatis-spring</artifactId>
            <version>2.1.1</version>
        </dependency>

        <!--mysql依赖-->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <version>8.0.28</version>
        </dependency>
        
        <!--Spring的JDBC-->
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-jdbc</artifactId>
            <version>5.3.17</version>
        </dependency>

        <!--druid连接池-->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid</artifactId>
            <version>1.2.16</version>
        </dependency>

        <!--单元测试-->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.11</version>
            <scope>test</scope>
        </dependency>

        <!--lombok插件-->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.28</version>
        </dependency>
    </dependencies>

3 设置插件

 <build>
        <resources>
            <resource>
                <!--所在的目录-->
                <directory>src/main/java</directory>
                <!--包括目录下的.properties .xml文件都会扫描到-->
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>

1.3 配置web.xml

配置前端控制器

    <!--配置前端控制器-->
    <servlet>
        <servlet-name>myssm</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:config/springmvc.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>myssm</servlet-name>
        <url-pattern>*.do</url-pattern>
    </servlet-mapping>

注册监听器

    <!--注册监听器-->
    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>classpath:config/applicationContext.xml</param-value>
    </context-param>
    <listener>
        <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>

注册字符过滤器,处理中文乱码

    <!--注册字符过滤器-->
    <filter>
        <filter-name>characterEncodingFilter</filter-name>
        <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
        <init-param>
            <param-name>encoding</param-name>
            <param-value>utf-8</param-value>
        </init-param>
        <init-param>
            <param-name>forceRequestEncoding</param-name>
            <param-value>true</param-value>
        </init-param>
        <init-param>
            <param-name>forceResponseEncoding</param-name>
            <param-value>true</param-value>
        </init-param>
    </filter>
    <filter-mapping>
        <filter-name>characterEncodingFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

1.4 配置jdbc.properties文件

jdbc.driver=com.mysql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/db002
jdbc.username=root
jdbc.password=root

1.5 配置SpringMVC核心文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:context="http://www.springframework.org/schema/context"
       xmlns:mvc="http://www.springframework.org/schema/mvc"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/mvc https://www.springframework.org/schema/mvc/spring-mvc.xsd">
    <!--springMVC的配置文件  配置controller和其他web相关对象-->
    <!--配置扫描-->
    <context:component-scan base-package="com.hx.controller"/>
    <!--配置视图解析器-->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/jsp/"/>
        <property name="suffix" value=".jsp"/>
    </bean>
    <!--配置注解驱动-->
    <mvc:annotation-driven></mvc:annotation-driven>
</beans>

1.6 配置Spring的核心文件

<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
        http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/mvc
        https://www.springframework.org/schema/mvc/spring-mvc.xsd">

        <!--spring的配置文件,声明Service dao等工具类对象-->

    <!-- 加载配置文件 -->
    <context:property-placeholder location="classpath:config/jdbc.properties" />
    <!-- 数据库连接池 -->
    <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"
          destroy-method="close">
        <property name="driverClassName" value="${jdbc.driver}" />
        <property name="url" value="${jdbc.url}" />
        <property name="username" value="${jdbc.username}" />
        <property name="password" value="${jdbc.password}" />
    </bean>

    <!--声明SqlSessionFactoryBean 创建 sqlSessionFactory-->
    <!-- mapper配置,mybatis的SqlSessionFactoryBean -->
    <!-- 让spring管理sqlsessionfactory 使用mybatis和spring整合包中的 -->
    <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
        <!-- 数据库连接池 -->
        <property name="dataSource" ref="dataSource" />
        <!-- 加载mybatis的全局配置文件 -->
        <property name="configLocation" value="classpath:config/mybatis-config.xml" />
    </bean>

    <!--声明mybatis的扫描,创建dao对象-->
    <!-- 配置Mapper扫描器 -->
    <bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
        <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"/>
        <property name="basePackage" value="com.hx.dao"/>
    </bean>

    <!--声明service的扫描-->
    <context:component-scan base-package="com.hx.service"/>

</beans>

1.7 配置MyBatis的核心文件

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
        PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
    <!--设置实体类别名-->
    <typeAliases>
        <package name="com.hx.domain"/>
    </typeAliases>

    <!--配置接口文件映射-->
    <mappers>
        <!--
            使用package要求:
                1、mapper文件名称和mapper接口名完全一致,包括大小写
                2、mapper文件和mapper接口必须在统一目录
        -->
        <package name="com.hx.dao"/>
    </mappers>
</configuration>

1.8 配置数据库

创建数据库,数据表student
表字段如下:
在这里插入图片描述

1.9 配置文件位置

在这里插入图片描述

2 编写后端代码

2.1 编写实体类

@Data
@AllArgsConstructor
@NoArgsConstructor
public class Student {
    private Integer sid;
    private String sname;
    private Integer sage;
}

2.2 编写Dao接口

@Mapper
public interface StudentDao {
    //查询所有
    List<Student> findAll();
    //新增数据
    int addStu(@Param("student") Student student);
    //删除数据
    int delStuById(Integer sid);
    //修改数据
    int updateStu(Student student);
}

2.3 编写Dao映射文件(resource目录下)

<?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.hx.dao.StudentDao">
    <!--查询所有列表-->
    <select id="findAll" resultType="Student">
        select sid, sname, sage
        from student;
    </select>
    <!--新增数据-->
    <insert id="addStu">
        insert into student
        values (#{student.sid}, #{student.sname}, #{student.sage});
    </insert>
    <!--删除数据-->
    <delete id="delStuById">
        delete
        from student
        where sid = #{sid}
    </delete>
    <!--修改数据-->
    <update id="updateStu" parameterType="Student">
        update student
        set sname=#{sname},
            sage=#{sage}
        where sid = #{sid}
    </update>
</mapper>

2.4 编写Service接口

public interface StudentService {
    //查询所有
    List<Student> selectAll();

    //插入数据
    int insertStu(Student student);

    int delStuById(Integer sid);

    int updateStu(Student student);
}

2.5 编写ServiceImpl实现类

@Service
public class StudentServiceImpl implements StudentService {

    @Autowired
    private StudentDao studentDao;

    @Override
    public List<Student> selectAll() {
        return studentDao.findAll();
    }

    @Override
    public int insertStu(Student student) {
        return studentDao.addStu(student);
    }

    @Override
    public int delStuById(Integer sid) {
        return studentDao.delStuById(sid);
    }

    @Override
    public int updateStu(Student student) {
        return studentDao.updateStu(student);
    }
}

2.6 编写Controller类

1、业务Controller

@Controller
@RequestMapping("/student")
public class StudentController {

    @Autowired
    private StudentService studentService;

    @GetMapping("/getAll.do")
    public ModelAndView getAll() {
        List<Student> list = studentService.selectAll();
        ModelAndView mv = new ModelAndView();
        mv.addObject("list", list);
        mv.setViewName("listStu");
        return mv;
    }

    @PostMapping("/add.do")
    public ModelAndView saveStu(Student student) {
        String tips = "插入失败";
        ModelAndView mv = new ModelAndView();
        int i = studentService.insertStu(student);
        if (i > 0) {
            tips = "插入成功";
        }
        mv.addObject("data1", tips);
        mv.setViewName("success");
        return mv;
    }

    @RequestMapping("/put.do")
    public ModelAndView putStu(Student student) {
        String tips = "修改失败!";
        ModelAndView mv = new ModelAndView();
        int i = studentService.updateStu(student);
        if (i > 0) {
            tips = "修改成功";
        }
        mv.addObject("data2", tips);
        mv.setViewName("success");
        return mv;
    }

    @RequestMapping(value = "/del.do")
    public ModelAndView delStu(Integer sid) {
        String tips = "删除失败!";
        ModelAndView mv = new ModelAndView();
        int i = studentService.delStuById(sid);
        if (i > 0) {
            tips = "删除成功";
        }
        mv.addObject("data3", tips);
        mv.setViewName("success");
        return mv;
    }
}

2、页面相关Controller

@RestController
@RequestMapping("/index")
public class IndexController {

    @RequestMapping("/m1Add.do")
    public ModelAndView m1Add(){
        ModelAndView mv = new ModelAndView();
        mv.setViewName("add");
        return mv;
    }
    @RequestMapping("/m2Put.do")
    public ModelAndView m2Put(){
        ModelAndView mv = new ModelAndView();
        mv.setViewName("put");
        return mv;
    }
    @RequestMapping("/m3Del.do")
    public ModelAndView m3Del(){
        ModelAndView mv = new ModelAndView();
        mv.setViewName("del");
        return mv;
    }
}

2.7 代码映射文件位置

在这里插入图片描述

3 编写前端代码

3.1 编写首页index.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
    <title>Title</title>
    <style>
        div {
            background-color: antiquewhite;
            width: 400px;
            height: 200px;
            margin: 100px auto;
            text-align: center;
            background-image: url("images/p5.jpg");
            background-repeat: no-repeat;
        }

        a {
            text-decoration: none;
            color: orange;
        }

        button {
            margin: 10px 20px;
        }
    </style>
</head>
<body>
<div>
    <h1>功能区首页</h1><br>
    <button><a href="/student/getAll.do">查询数据</a></button>

    <button><a href="/index/m1Add.do">插入数据</a></button>
    <br>
    <button><a href="/index/m2Put.do">修改数据</a></button>

    <button><a href="/index/m3Del.do">删除数据</a></button>
</div>
</body>
</html>

3.2 配置Tomcat

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

3.3 webapp下配置图片

在这里插入图片描述

3.4 编写功能页面WEB-INF下

在这里插入图片描述

1 编写 listStu.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%
   String basePath =
           request.getScheme() + "://" +
                   request.getServerName() + ":" +
                   request.getServerPort() + request.getContextPath() + "/";
%>
<html>
<head>
   <title>展示所有学生信息</title>
   <style>
       .box1 {
           width: 300px;
           height: 400px;
           text-align: center;
           margin: 10px auto;
           background-image: url("/images/p3.jpg");
           background-repeat: no-repeat;
       }
       .box2 {
           width: 80px;
           height: 25px;
           text-align: center;
           margin: 10px auto;
       }
   </style>
</head>
<body>
<div class="box1">
   <table border="1px" width="300px" height="30px" align="center" cellspacing="0" cellpadding="0">
       <caption style="font-size: 20px">学生信息表</caption>
       <tr bgcolor="#a9a9a9" text-align="center">
           <td>学号</td>
           <td>姓名</td>
           <td>年龄</td>
       </tr>
       <%--数据行--%>
       <c:forEach items="${list}" var="stu" varStatus="s">
           <tr>
               <td>${stu.sid}</td>
               <td>${stu.sname}</td>
               <td>${stu.sage}</td>
           </tr>
       </c:forEach>
   </table>
   <%--返回到首页--%>
   <div class="box2">
       <form action="<%=basePath%>index.jsp">
           <input type="submit" name="返回" value="返回功能区">
       </form>
   </div>
</div>
</body>
</html>

2 编写 add.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%
    String basePath =
            request.getScheme() + "://" +
                    request.getServerName() + ":" +
                    request.getServerPort() + request.getContextPath() + "/";
%>
<html>
<head>
    <title>新增学生信息</title>
    <style>
        div {
            background-color: antiquewhite;
            width: 300px;
            height: 180px;
            margin: 100px auto;
            text-align: center;
            line-height: normal;
            background-image: url("/images/p1.jpg");
            background-repeat: no-repeat;
        }
        .box2 {
            width: 80px;
            height: 25px;
            text-align: center;
            margin: auto;
        }
    </style>
</head>
<body>
<div>
    <h3>新增数据</h3>
    <form action="/student/add.do" method="post">
        学号:<input type="text" name="sid" value=""><br>
        姓名:<input type="text" name="sname" value=""><br>
        年龄:<input type="text" name="sage" value=""><br>
        <input type="submit" value="添加">
        <input type="reset" value="重置">
    </form>
    <%--返回到首页--%>
    <div class="box2">
        <form action="<%=basePath%>index.jsp">
            <input type="submit" name="返回" value="返回功能区">
        </form>
    </div>
</div>
</body>
</html>

3 编写 put.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%
    String basePath =
            request.getScheme() + "://" +
                    request.getServerName() + ":" +
                    request.getServerPort() + request.getContextPath() + "/";
%>
<html>
<head>
    <title>修改学生信息</title>
    <style>
        div {
            background-color: antiquewhite;
            width: 300px;
            height: 180px;
            margin: 100px auto;
            text-align: center;
            line-height: normal;
            background-image: url("/images/p4.jpg");
            background-repeat: no-repeat;
        }
        .box2 {
            width: 80px;
            height: 25px;
            text-align: center;
            margin: auto;
        }
    </style>
</head>
<body>
<div>
    <h3>根据学号修改数据</h3>
    <form action="/student/put.do" method="post">
        学号:<input type="text" name="sid" value=""><br>
        姓名:<input type="text" name="sname" value=""><br>
        年龄:<input type="text" name="sage" value=""><br>
        <input type="submit" value="修改">
        <input type="reset" value="重置">
    </form>
    <%--返回到首页--%>
    <div class="box2">
        <form action="<%=basePath%>index.jsp">
            <input type="submit" name="返回" value="返回功能区">
        </form>
    </div>
</div>
</body>
</html>

4 编写 del.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%
    String basePath =
            request.getScheme() + "://" +
                    request.getServerName() + ":" +
                    request.getServerPort() + request.getContextPath() + "/";
%>
<html>
<head>
    <title>删除学生信息</title>
    <style>
        div {
            background-color: beige;
            width: 300px;
            height: 150px;
            margin: 100px auto;
            text-align: center;
            background-image: url("/images/p2.jpg");
            background-repeat: no-repeat;
        }
        .box2 {
            width: 80px;
            height: 25px;
            text-align: center;
            margin: auto;
        }
    </style>
</head>
<body>
<div>
    <h3>根据学号删除数据</h3>
    <form action="/student/del.do" method="get">
        <input type="text" placeholder="请输入学号" name="sid" value="">
        <input type="submit" value="删除">
    </form>
    <%--返回到首页--%>
    <div class="box2">
        <form action="<%=basePath%>index.jsp">
            <input type="submit" name="返回" value="返回功能区">
        </form>
    </div>
</div>
</body>
</html>

5 编写success.jsp

<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%
    String basePath =
            request.getScheme() + "://" +
                    request.getServerName() + ":" +
                    request.getServerPort() + request.getContextPath() + "/";
%>
<html>
<head>
    <title>Title</title>
    <style>
        .box1{
            width: 200px;
            height: 150px;
            background-color: lightgoldenrodyellow;
            margin: 0 auto;
            text-align: center;
        }
    </style>
</head>
<body>
<div class="box1">
    <div class="box2">
        <div>插入:${data1}</div>
        <div>修改:${data2}</div>
        <div>删除:${data3}</div>
    </div>
    <%--返回到首页--%>
    <div>
        <form action="<%=basePath%>index.jsp">
            <input type="submit" name="返回" value="返回功能区">
        </form>
    </div>
</div>
</body>
</html>

4 运行访问

4.1 请求路径

首页:http://localhost:8080
在这里插入图片描述

4.2 增删改查界面

  • 查询功能
    在这里插入图片描述
  • 新增功能
    在这里插入图片描述
  • 修改功能
    在这里插入图片描述
  • 删除功能
    在这里插入图片描述

4.3 项目源代码

https://gitee.com/allureyu/ssm__xml.git

以上纯属个人一手编写,欢迎指教,不喜勿喷!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/878885.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

AOP与SpringAOP

AOP与SpringAOP 一、什么是AOP&#xff0c;什么是SpringAOP二、AOP与拦截器的区别三、实现SpringAOP1.添加SpringBootAOP依赖2.创建切面3.创建切点4.创建通知5.创建连接点 效果 一、什么是AOP&#xff0c;什么是SpringAOP AOP即Aspect-Oriented Programming面向切面编程。 它是…

CRC 校验码

CRC 校验码 题目解答发送端如何计算商 接收端 题目 假设生成多项式为 G(X)X4X31&#xff0c;要求出二进制序列10110011的CRC校验码 解答 发送端 首先 生成多项式为&#xff1a;G(X)X4X31&#xff0c;改写为二进制比特串为11001(有X的几次方&#xff0c;对应的2的几次方的位…

stable diffusion 单张图片换头roop安装配置

1.首先安装秋叶大佬的webui 2.然后在拓展里面搜索roop,下载roop插件,然后重启webui 3.重启后,在文生图和图生图的界面,就可以看到roop的入口 4.这里面,需要提前安装Visual Studio. 勾选一些必要的选项,这里可以参照b站的视频 # 秋叶版本Stablediffusion的Roop插件的安装 …

RocketMQ消费者可以手动消费但无法主动消费问题,或生成者发送超时

1.大多数是配置问题 修改rocketmq文件夹broker.conf 2.配置与集群IP或本地IPV4一样 重启 在RocketMQ独享实例中支持IPv4和IPv6双栈&#xff0c;主要是通过在网络层面上同时支持IPv4和IPv6协议栈来实现的。RocketMQ的Broker端、Namesrv端和客户端都需要支持IPv4和IPv6协议&…

Qt扫盲-Qt Paint System 概述

Qt Paint System 概述 一、概述二、绘图设备和后端1. Widget2. Image3. Pixmap4. OpenGL绘制设备5. Picture6. 自定义绘制后端 三、绘图与填充1. Drawing2. 填充 Filling 四、坐标系统1. 渲染Window-Viewport转换 五、读写图像文件1. QMovie 六、绘图相关设备 一、概述 Qt的pa…

【Antd】DatePicker日期选择框设置disabledDate不可选择的日期

需要先引入moment import moment from moment; 调用 antd 组件时&#xff1a; <RangePicker disabledDate{disabledDate} /> 其中 disabledDate 赋值如下&#xff1a; 1、当天之前的不可选&#xff0c;不包括当天&#xff1a; const disabledDate (current) > {/…

MyBatis-Plus学习笔记(尚硅谷)

一、MyBatis-Plus 1.简介 MyBatis-Plus (opens new window)&#xff08;简称 MP&#xff09;是一个 MyBatis (opens new window)的增强工具&#xff0c;在 MyBatis 的基础上只做增强不做改变&#xff0c;为简化开发、提高效率而生。 我们的愿景是成为 MyBatis 最好的搭档&…

互联网发展历程:从网线不够长到中继器的引入

互联网&#xff0c;这个如今贯穿我们生活的无所不在的网络&#xff0c;其发展历程充满了无数的创新和变革。有一项看似不太起眼的技术却在互联网的发展中发挥着至关重要的作用&#xff0c;那就是中继器。本文将带您深入了解互联网的发展历程&#xff0c;探讨在网线不够长的情况…

Mysql 搭建MHA高可用架构,实现自动failover,完成主从切换

目录 自动failover MHA&#xff1a; MHA 服务 项目&#xff1a;搭建Mysql主从复制、MHA高可用架构 实验项目IP地址配置&#xff1a; MHA下载地址 项目步骤&#xff1a; 一、修改主机名 二、编写一键安装mha node脚本和一键安装mha mangaer脚本&#xff0c;并执行安装…

Typora常用手册

常用快捷键 加粗&#xff1a; Ctrl B 标题&#xff1a; Ctrl H 插入链接&#xff1a; Ctrl K 插入代码&#xff1a; Ctrl Shift C – 无法执行 行内代码&#xff1a; Ctrl Shift K 插入图片&#xff1a; Ctrl Shift I 无序列表&#xff1a;Ctrl Shift L – 无法执行…

第3章 表结构设计

mini商城第3章 表结构设计 一、课题 表结构设计 二、回顾 1、掌握商城架构设计 前后端分离开发模式学习 商城架构设计 商城技术栈讲解 2、微服务模块拆分原则 三、目标 1、整体业务功能分析 2、根据业务需求设计表结构及字段 四、内容 在第一篇文章中有介绍过需求文档…

磁粉制动器离合器收放卷张力控制应用

张力控制系统的开环闭环应用介绍,请查看下面文章链接: PLC张力控制(开环闭环算法分析)_张力控制plc程序实例_RXXW_Dor的博客-CSDN博客里工业控制张力控制无处不在,也衍生出很多张力控制专用控制器,磁粉制动器等,本篇博客主要讨论PLC的张力控制相关应用和算法,关于绕线…

Ubuntu设置定时重启

1.安装/更新 cron 安装crontab sudo apt-get install cron更新命令 sudo apt-get update2.配置cron定时任务 sudo nano /etc/crontab* * * * * root reboot(从左到右&#xff0c;五个 * 依次是 分&#xff0c;时 &#xff0c;天&#xff0c;月&#xff0c;星期)下列命令表示…

开启OLED透明屏代理之路:高质量显示解决方案的商机

随着科技的不断进步&#xff0c;OLED透明屏作为一种创新的显示技术&#xff0c;正逐渐在各个领域得到广泛应用。 作为一名OLED透明屏代理商&#xff0c;你将有机会参与其中&#xff0c;共享这一蓬勃发展的市场。 一、介绍OLED透明屏的概念和特点 1.1 什么是OLED透明屏 OLED透…

lodash常用方法笔记

_.fromPairs(pairs) 与_.toPairs正好相反&#xff1b;这个方法返回一个由键值对pairs构成的对象。 _.fromPairs([[fred, 30], [barney, 40]]); // > { fred: 30, barney: 40 }Object.fromEntries()有同样的功能&#xff0c;只是在高版本浏览器才支持&#xff1a; _toPai…

Command ‘adb‘ not found, but can be installed with: sudo apt install adb

报错信息 Command ‘adb’ not found, but can be installed with: sudo apt install adb 解决方法 因为我们的ubuntu系统并没有安装adb&#xff0c;所以找不到命令&#xff0c;输入安装命令&#xff1a; sudo apt-get install adb安装成功后就可以使用adb命令了。

电子拣货标签2代系统简介

CK_Label_v2 一、革新点 无线 容易安装和移动 按键及指示导引系统 128*64点阵屏幕&#xff0c;自带LED背光 红绿两色高亮LED灯光指示 长电池寿命&#xff0c;常规使用3年以上 二、特点与效益 提升作业速度与品质 简易快速部署 实现无纸化标准化作业 缩短操作人员培训时…

Unity Spine帧事件

SpinePro中添加事件帧 首先 选中右上角的层级树 然后选择事件选项 最后在右下角看到 新建 点击它 新建一个事件 点击左上角的设置按钮 弹出编辑窗口 编辑窗口 在右上角 动画栏 可以切换对应的动画 点坐边的那个小灰点来切换 亮点代表当前动画 选中帧 添加事件 点击对应事件…

从零实战SLAM-第四课(相机成像及常用视觉传感器)

在七月算法报的班&#xff0c;老师讲的蛮好。好记性不如烂笔头&#xff0c;关键内容还是记录一下吧&#xff0c;课程入口&#xff0c;感兴趣的同学可以学习一下。 --------------------------------------------------------------------------------------------------------…

linux——MongoDB服务

一、MongoDB概述 MongoDB是一个nosql数据库它有高性能、无模式文档型的特点是nosql数据库中功能最丰富&#xff0c;最像关系型数据库&#xff0c;数据库格式BSON。 相关概念 实例&#xff1a; 系统上运行的MongoDB的进程类似于mysql的实例 库&#xff1a; 每个数…