springboot整合mybatis-plus模版

news2025/1/13 10:28:44

1.创建springboot项目

 Maven类型+Lombok依赖+Spring Web 依赖+MySQL Driver依赖

 pom.xml:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.example</groupId>
    <artifactId>springBoot-Test</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>springBoot-Test</name>
    <description>springBoot-Test</description>
    <properties>
        <java.version>1.8</java.version>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <spring-boot.version>2.6.13</spring-boot.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>com.mysql</groupId>
            <artifactId>mysql-connector-j</artifactId>
            <version>8.2.0</version>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <!--导入Mybatis坐标-->
        <dependency>
            <groupId>org.mybatis.spring.boot</groupId>
            <artifactId>mybatis-spring-boot-starter</artifactId>
            <version>2.1.2</version>
        </dependency>
        <!--导入mybatis-plus坐标-->
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.4.1</version>
        </dependency>
        <!--导入数据库druid坐标-->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid-spring-boot-starter</artifactId>
            <version>1.1.22</version>
        </dependency>
        <!--简略get,set方法-->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <version>1.18.10</version>
        </dependency>
        <!--模版引擎-->
        <dependency>
            <groupId>org.apache.velocity</groupId>
            <artifactId>velocity-engine-core</artifactId>
            <version>2.3</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>
    </dependencies>
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-dependencies</artifactId>
                <version>${spring-boot.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <version>${spring-boot.version}</version>
                <configuration>
                    <mainClass>com.example.springboottest.SpringBootTestApplication</mainClass>
                    <skip>true</skip>
                </configuration>
                <executions>
                    <execution>
                        <id>repackage</id>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>

2.idea建表()

1. 首先点击右侧的数据库->右击@localhost->点击新建->查询控制台
2. 选择在那个数据库建表  use  `数据库名` 
use `数据库名`;
create table `表名`(
    `id` INTEGER primary key auto_increment comment '主键id',
    `type` varchar(20) comment '书籍类型',
    `create_time` timestamp comment '创建时间',
    `update_time` timestamp comment '修改时间',
    `version` INTEGER comment '版本号'     (注意最后没有,)
)default charset = utf8 comment '书籍表';
​
insert into `表名`(`type`) 
    values
        ('科幻'),
        ('玄幻'),
        ('架空');
这里一连写入几个,不要写一个insert一个。

3.配置yml文件

spring:
    datasource:
        # 如果使用com.mysql.jdbc.Driver爆红,已经被弃用
        driver-class-name: com.mysql.cj.jdbc.Driver
        # 时区serverTimezone根据自己需要修改
        url: jdbc:mysql://127.0.0.1:3306/数据库名?autoReconnect=true&useUnicode=true&characterEncoding=utf8&serverTimezone=GMT%2B8
        username: 用户名
        password: 密码
mybatis-plus:
    # 设置mybatis映射器(就是xml文件的路径)
    mapper-location: classpath:mapper/*.xml
    # 开启mybatis-plus运行日志 (建议开启)
    configuration:
        log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
        
如果密码忘记可以查看他的文章:
    https://www.cnblogs.com/murmansk/p/17648639.html          

4.目录结构如下

config层+controller层+dao层+mapper层+service层

简单了解一下结构:

Java(dao、service、controller)解释:

1.dao层:持久层(Repository 或 DAO:数据访问层) ​ *负责与数据库进行联络的一些任务都封装在此 ​ *dao层属于一种底层,比较基础的操作,具体到对于某个表的CRUD操作,也就是说某个dao一定是和数据库某一张表对应的。 ​ *mapper设计dao层的接口(属于dao层),然后在spring的配置文件中定义此接口的实现类。 ​ *建议只做原子操作

2.service层: 服务层 ​ *对一个或多个dao进行再次封装的事务控制。 ​ *service层负责逻辑应用,同样先设计接口,在设计其实现类,接着在设计spring的配置文件中配置其实现的关联。 ​ *封装service层业务逻辑有利于通用业务逻辑的独立性和重复利用性。程序显得非常简洁。

3.controller层:控制层 ​ * 控制层负责请求转发,接受页面传递过来的请求,传给service层处理,接到响应,再传给页面。

关系:控制层(controller)接受页面传递过来的参数,调用接口传递给中间层也就是业务层(service),业务层(service)调用持久层的接口(dao层:mapper),对数据库进行操作,返回操作结果,controller响应给页面。

5. CRUD操作

1.编写底层(实体类)

@Data   // 提供get、set、toString等方法
@AllArgsConstructor // 提供全参构造
@NoArgsConstructor // 提供无参构造
// 如果不使用这个依赖,默认映射(首字母小写)寻找表名,当实体类与
// 表名不一致会出现错误
@TableName("表名") 
public class BooK {
   @TableId(value = "id",type = IdType.AUTO) 
    // 设置主键并自增(这里只是告诉mybatis,表中还是要设置主键自增的)
    private Integer id;
   @TableField(value = "type")
    private String type;
  @TableField(value = "create_time",fill = FieldFill.INSERT)
    /* value: 指定java属性createTime对应数据库字段,代表一种映射
     fill: 表示在插入记录时,该字段应该被自动填充
    使用自动填充需要实现MetaObjectHandler 接口,并重写方法*/
    private Date createTime;
    @TableField
    (value = "update_time",fill = FieldFill.INSERT_UPDATE)
    // fill: 表示在插入和更新记录时,该字段自动更新
    private Date updateTime;
    @Version 
    // 乐观锁:当同时更新某个记录会保留第一个更新值
    private Integer version;
}

编写mapper: 直接继承BaseMapper,接口中封装了一系列 CRUD 常用操作

public interface BookMapper extends BaseMapper<实体类> {
}

我们需要在启动类添加MapperScan注解。指定mapper扫描路径,指定后就不用再mapper层写@Mapper注解(建议)

@SpringBootApplication
@MapperScan("com.example.mapper")
//sources root下的mapper路径 作用:自动注册映射器接口为spring Bean
public class SpringBootDemo1Application {
    public static void main(String[] args) {
 SpringApplication.run(SpringBootDemo1Application.class,args);
    }
}

2.编写业务层(service) IService内部进一步封装BaseMapper接口的方法,使用时可以通过mapper类,也可以通过service。

public interface BookService extends IService<实体类> { }

service实现类记得加@service注解

@Service
public class BookTestServiceImpl implements UserTestService{
    @Autowired // 根据类型找实现类bean
    private GameMapper gm;
    @Version 
    @TableField(fill = FieldFill.INSERT)
    private Integer version;
}

3.编写控制层(controller)

@RestController
@RequestMapping("book/test") // 映射路径
public class BookController {
    @Autowired
    private BookService bs;
}

无参,@RequestParam 和@PathVaiable的情况下使用GetMapping 如果传的参数是@RequestBody ,多参或者传对象的情况下使用@PostMapping注解

6.分页插件

1.配置分页插件 ​ 编写一个配置类,使用@Bean注解将其交给spring容器管理

@Configuration // 加入这个才能被spring扫描
@Component // 注入spring管理
public class MPConfig {
    /** 分页插件* */
    @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor() {
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.H2));
        return interceptor;
    }
}

2.定义一个包装类,保存分页所需要的数据

@Data 
@AllArgsConstructor 
@NoArgsConstructor 
public class GameFy {
    private Integer current; // 当前页
    private Integer size; // 每页记录量
    private Long total; // 记录总量
    private List<Game> game; // 记录信息
}

3.service层自定义接口

public interface BookService extends IService<Book> { 
    BookPage pagelist(Integer current,Integer size);
}

3.service实现类调用接口 ​ 编写分页代码:调用mybatis-plus提供的分页方法(selectPage),会将数据封装到Page对象中。

service实现类:

@Override
public BookPage pageList(Integer current,Integer size){
    BookPage bg = new BookPage();
    Page<Book> book = new Page<>(current,size);
    gm.selectPage(book,null);
     // 如果没有其他条件,用null 作用执行分页查询,并把结果返回给book
    bg.setCurrent(current);
    bg.setSize(size);
    bg.setTotal(book.getTotal());
    bg.setBook(book.getRecords());// 获取所需要的实体类数据
    return bg;
    
}

4.controller层:

@GetMapping("pagelist")
    public BookPage pageList(@RequestParam("current") Integer current,@RequestParam("size") Integer size){
        return bs.pageList(current,size);
    }

7.自动填充数据功能

比如:数据创建时间和修改时间。mybatis-plus支持自动填充这些字段的数据。 这个在上面已经提到过,只是不完善,下面给出完整步骤。

1.在实体类中使用@TableField注解(映射字段、condition预处理WHERE实体条件自定义运算规则)上面已经写过。

2.自定义类,实现MetaObjectHandler接口,并重写方法。 注意这里的Date():java.util不是sql

@Component
public class MyMetaObjectHandler implements MetaObjectHandler {
    /*
    * 自定义填充内容,根据属性名去填充数据*/
    @Override
    public void insertFill(MetaObject metaObject) {
        this.strictInsertFill(metaObject,"create_time",Date.class, new Date()); // 插入数据时实现创建时间自动插入
        this.strictInsertFill(metaObject,"update_time",Date.class, new Date());// 插入数据时实现更新时间自动插入
    }
​
    @Override
    public void updateFill(MetaObject metaObject) {
        this.strictUpdateFill(metaObject,"update_time",Date.class, new Date()); // 更新数据时实现更新时间自动更新
    }
}

8.乐观锁功能

通过version实现(上面提到过) 实现思路: 1.取出数据时,获取当前version(默认为1) 2.更新数据时(version会递增),带上这个version 3.执行更新时,判断此时version是否等于之前的version 4.如果version不对,更新失败

配置乐观锁插件:

@Configuration
@Component  
public class MyConfig {
    @Bean
    public OptimisticLockerInterceptor optimisticLockerInterceptor() {
        return new OptimisticLockerInterceptor();
    }
}
​

2.定义一个数据库字段verison(上面已经做过) 3.使用@Version注解标注对应的实体类。通过@TableField进行数据自动填充

service实现类:
    @Version
    @TableField(fill = FieldFill.INSERT)
    private Integer version;

4.简单测试:

​
@Test
public void test() {
    Book book = gm.selectById(1);
    book.setType("tom");
    gm.updateById(book);
    book.setName("jarry");
    gm.updateById(book);
    
}
​

swagger-ui:接口测试

用于接口测试:前后端问题及时协商,尽早解决

1.添加Maven依赖:

<dependency>
   <groupId>io.springfox</groupId>
   <artifactId>springfox-swagger2</artifactId>
   <version>2.9.2</version>
</dependency>
<dependency>
   <groupId>io.springfox</groupId>
   <artifactId>springfox-swagger-ui</artifactId>
   <version>2.9.2</version>
</dependency>

2.配置swagger,编写配置类SwaggerConfig

@Configuration
@EnableSwagger2
public class SwaggerConfig{
}

yml文件:解决springboot和swagger冲突

spring:
    mvc:
        pathmatch:
            matching-strategy: ant_path_matcher

3.访问测试 :http://localhost:8080/swagger-ui.html ,(这个页面是自动生成的)可以看到swagger的界面;8080改成你自己的端口号

4.基本实现swagger

@Configuration // 配置类
@EnableSwagger2 // 开启swagger2的自动配置
public class SwaggerConfig {
    /*swagger2*/
    @Bean //配置docket以配置Swagger具体参数
    public Docket docket() {
        /*构建Docket通过select()方法配置扫描接口*/
        return new Docket(DocumentationType.SWAGGER_2)
                .apiInfo(apiInfo())
                .enable(true) //配置是否启用Swagger,如果是false,在浏览器将无法访问
                .select()
                .apis(RequestHandlerSelectors.basePackage("com.example.controller")) // controller路径
                // 配置如何通过path过滤,即这里只扫描请求以/kuang开头的接口
                //.paths(PathSelectors.ans("/kuang/**"))
                .build();
    }
    /*通过apiInfo()属性配置文档信息:*/
    private ApiInfo apiInfo(){
    //下面的这套配置就把原来的static代码块覆盖掉:联系人访问链接、联系人邮箱
        Contact contact = new Contact("***", "https://baidu.com/", "3153734397@qq.com");
        return new ApiInfo(
                "***的API文档",
                "学习使用swagger2",
                "v1.0",
                "https://baidu.com/", // 组织链接
                contact, // 联系人信息
                "Apache 2.0许可",
                "https://baidu.com",// 许可连接
                new ArrayList<>() // 扩展
        );
    }
    /*配置API分组,如果想多创几个分组,多写几个就可以*/
    @Bean
    public Docket docket1(){
        return new Docket(DocumentationType.SWAGGER_2).groupName("分组");
    }
    @Bean
    public Docket docket2(){
        return new Docket(DocumentationType.SWAGGER_2).groupName("学习");
    }
}
 

@Api:放在请求的类上,与@RestController并列,说明该类的作用 @Api(value = "订单模块") @RestController public class OrderController {

}

@ApiOperation:说明方法的作用 @ApiOperation(value = "查询所有信息")

@ApilmplicitParams、@ApilmpllicitParam: 说明参数的作用

@ApiOperation(value = "根据姓名模糊查询")
@ApiImplicitParam(name="username",value="用户名",required=true)
@GetMapping("likeName")
public List<Game> listName(@RequestParam("username") String username){
    return bs.LikeUserName(username);
}
​
    @ApiOperation(value = "分页信息")
    @ApiImplicitParams({ // paramType:以什么类型传递信息,目前是表单形式,注意如果发生错误,可能就是这里格式的问题
            @ApiImplicitParam(name="current",value="当前页",required=true),
            @ApiImplicitParam(name="size",value="每页记录数",required=true,paramType="query")
    })
    @GetMapping(path = "pagelist")
    public GameFy pageList(@RequestParam ("current") Integer current,@RequestParam ("size") Integer size){
        return bs.pagelist(current,size);
    }

@ApiResponses、@ApiResponse:方法返回值状态码的含义(必须一起使用)

@ApiResponses({ @ApiResponse(code = 200, message = "请求成功"), @ApiResponse(code = 400, message = "请求参数没填好"), @ApiResponse(code = 404, message = "请求路径没有或页面跳转路径不对") }) @GetMapping(path = "pagelist",produces = {"application/json"}) // 注意这里必须添加produces public Dto list(@RequestParam String userId) {}

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

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

相关文章

开发环境中的调试视图(IDEA)

当程序员写完一个代码时必然要运行这个代码&#xff0c;但是一个没有异常的代码却未必满足我们的要求&#xff0c;因此就要求程序员对已经写好的代码进行调试操作。在之前&#xff0c;如果我们要看某一个程序是否满足我们的需求&#xff0c;一般情况下会对程序运行的结果进行打…

【Nginx】centos和Ubuntu操作系统下载Nginx配置文件并启动Nginx服务详解

目录 &#x1f337; 安装Nginx环境 &#x1f340; centos操作系统 &#x1f340; ubuntu操作系统 &#x1f337; 安装Nginx环境 以下是在linux系统中安装Nginx的步骤&#xff1a; 查看服务器属于哪个操作系统 cat /etc/os-release安装 yum&#xff1a; 如果你确定你的系统…

Linux驱动开发——(四)内核定时器

一、内核的时间管理 1.1 节拍率 Linux内核中有大量的函数需要时间管理&#xff0c;比如周期性的调度程序、延时程序等等&#xff0c;对于驱动编写者来说最常用的是定时器。 硬件定时器提供时钟源&#xff0c;时钟源的频率可以设置&#xff0c;设置好以后就周期性的产生定时中…

Vulnhub靶机 DC-6 打靶实战 详细渗透测试过程

Vulnhub靶机 DC-6 详细渗透流程 打靶实战 目录 Vulnhub靶机 DC-6 详细渗透流程 打靶实战一、将靶机导入到虚拟机当中二、渗透测试主机发现端口扫描信息探测web渗透目录爆破爆破后台密码反弹shell搜集有价值信息SSH远程登录提权反弹jens用户权限的shell 提权利用 一、将靶机导入…

使用kali进行DDos攻击

使用kali进行DDos攻击 1、打开命令提示符&#xff0c;下载DDos-Attack python脚本 git clone https://github.com/Elsa-zlt/DDos-Attack 2、下载好之后&#xff0c;cd到DDos-Attack文件夹下 cd DDos-Attack 3、修改&#xff08;设置&#xff09;对ddos-attack.py文件执行的权…

OpenHarmony实战开发-

简介 SmartPerf-Host是一款深入挖掘数据、细粒度展示数据的性能功耗调优工具&#xff0c;可采集CPU调度、频点、进程线程时间片、堆内存、帧率等数据&#xff0c;采集的数据通过泳道图清晰地呈现给开发者&#xff0c;同时通过GUI以可视化的方式进行分析。该工具当前为开发者提…

理发师问题的业务建模方案

背景 题目&#xff1a; 假设有一个理发店只有一个理发师&#xff0c;一张理发时坐的椅子&#xff0c;若干张普通椅子顾客供等候时坐。没有顾客时&#xff0c;理发师睡觉。顾客一到&#xff0c;叫醒理发师 。如果理发师没有睡觉&#xff0c;而在为别人理发&#xff0c;他就会坐…

【git】多仓库开发

通常我们习惯了在单个仓库下多分支开发&#xff0c;最近用了多仓库开发&#xff0c;我拿一个开源项目举例&#xff0c;总结一下基本流程。 1.fork项目到自己仓库 2.把自己仓库项目pull到本地 3.在本地新建开发分支 git checkout -b dev 4.修改/添加分支对应的远程仓库 修…

数据通信核心

一.认识网络设备 互联网网络设备有AC,AP,防火墙,路由器&#xff0c;交换机等。 这里我们一起了解一下 框式交换机—— 主控板相当于大脑&#xff0c;属于控制平面 交换机网板——数据平面&#xff0c;转发平面——进行不同网卡之间的数据交换&#xff08;设备内部之间的转发…

(2024)Visual Studio的介绍、安装与使用

Visual Studio介绍 1.Visual Studio是什么&#xff1f; Visual Studio是微软公司推出的一款开发工具包系列产品&#xff0c;它是一个基本完整的开发工具集&#xff0c;为软件开发者提供了整个软件生命周期中所需的大部分工具。 2.Visual Studio的定义 Visual Studio是美国微软公…

智慧图书馆为什么用rfid电子标签而不是磁条

智慧图书馆一般都会使用RFID技术&#xff0c;而不是磁条。以下是几个原因&#xff1a; 1. 效率更高&#xff1a;RFID技术可以实现非接触式读取&#xff0c;图书馆工作人员可以同时读取多本书的信息&#xff0c;大大提高了借还书的效率。 2. 数据量更大&#xff1a;RFID标签可以…

多项式和Bezier曲线拟合

目录 1. 多项式拟合2. Bezier曲线拟合3. 源码地址 1. 多项式拟合 在曲线拟合中&#xff0c;多项式拟合方法的性能受到三个主要因素的影响&#xff1a;采样点个数、多项式阶数和正则项。 采样点个数 N N N&#xff1a;从Figure 1中可以看出较少的采样点个数可能导致过拟合&…

npm install 卡在still idealTree buildDeps不动

前言 再使用npm install 安装包依赖时 发现一直卡住 停留在 观察node_cache下的_logs文件 发现一直在拉取包 37 silly idealTree buildDeps 38 silly fetch manifest riophae/vue-treeselect0.4.0尝试解决 尝试设置了taobao镜像源 依然如此 获取已经设置的镜像源 确实是ta…

Vue3:响应式数据的基本使用(ref、reactive)

一、前言 在Vue3中&#xff0c;如果数据不是响应式数据&#xff0c;当数据的值发生改变时&#xff0c;页面上的数据是不会发生改变的。因此本文主要介绍Vue3中响应式数据的使用&#xff0c;包括ref和reactive的基本使用。 二、ref 1、ref —— 创建基本类型的响应式数据 re…

java泛型介绍

Java 泛型是 JDK 5 引入的一个特性&#xff0c;它允许我们在定义类、接口和方法时使用类型参数&#xff0c;从而使代码更加灵活和类型安全。泛型的主要目的是在编译期提供类型参数&#xff0c;让程序员能够在编译期间就捕获类型错误&#xff0c;而不是在运行时才发现。这样做提…

SSH远程连接服务实战

题目&#xff1a; 一.配置两台主机 主机1、 主机名: server.example.com ip: 192.168.78.129 建立用户timinglee&#xff0c;其密码为timinglee 主机2、 主机名&#xff1a;client.example.com ip: 192.168.78.128 2.安需求完成项目 192.168.78.128 在远程登录192.168.78.129的…

为什么我的 Mac 运行缓慢以及如何使用CleanMyMac X修复它

近些年伴随着苹果生态的蓬勃发展&#xff0c;越来越多的用户开始尝试接触Mac电脑。然而很多人上手Mac后会发现&#xff0c;它的使用逻辑与Windows存在很多不同&#xff0c;而且随着使用时间的增加&#xff0c;一些奇奇怪怪的文件也会占据有限的磁盘空间&#xff0c;进而影响使用…

大型集团企业 怎么实现多区域文件交换?

很多大型集团企业&#xff0c;都会在全国各地&#xff0c;甚至海外&#xff0c;都设立分支机构&#xff0c;还有银行、邮政这类机构&#xff0c;都会在全国各地设立多个支行和网点&#xff0c;所以在日常经营过程中&#xff0c;都会存在多区域文件交换的场景。 大型集团企业在进…

中国人民解放军信息支援部队成立

中国人民解放军信息支援部队成立 ----------强化信息化战争能力&#xff0c;维护国家安全 阅读须知&#xff1a; 探索者安全团队技术文章仅供参考,未经授权请勿利用文章中的技术资料对任何计算机系统进行入侵操作,由于传播、利用本公众号所提供的技术和信息而造成的任何直接或…

Linux进程详解二:创建、状态、进程排队

文章目录 进程创建进程状态进程排队 进程创建 pid_t fork(void) 创建一个子进程成功将子进程的pid返回给父进程&#xff0c;0返回给新创建的子进程 fork之后有两个执行分支&#xff08;父和子&#xff09;&#xff0c;fork之后代码共享 bash -> 父 -> 子 创建一个进…