<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<!--springboot web起步依赖-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!--hutool-->
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.8.12</version>
</dependency>
</dependencies>
<build>
<!--指定项目打完包之后的名称,xxx地方自定义-->
<finalName>debug_demo</finalName>
<plugins>
<!--打包插件-->
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<excludes>
<exclude>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
3、修改服务端口号
server:
port: 6633
4、编写controller接口
package cn.aopmin.controller;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.HashMap;
import java.util.Map;
/**
* @author 白豆五
* @version 2023/06/28
* @since JDK8
*/
@RestController
@RequestMapping(“/api/user”)
public class UserController {
// region 通过ID获取用户信息
@PostMapping("/info")
public String getInfo(Long userId) {
// 匿名内部类方式构建map存放用户信息
Map<String, Object> userInfo = new HashMap<String, Object>() {
{
put("userId", 129);
put("userName", "白豆五");
put("userAge", 18);
put("userSex", "男");
}
};
if (userId == userInfo.get(userInfo)) { //如果两个包装类型比值要用equals方法
return "用户信息:" + userInfo.toString();
}
return "用户不存在";
}
//endregion
}
**自我介绍一下,小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。**
**深知大多数Linux运维工程师,想要提升技能,往往是自己摸索成长或者是报班学习,但对于培训机构动则几千的学费,着实压力不小。自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!**
**因此收集整理了一份《2024年Linux运维全套学习资料》,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。**
![img](https://img-blog.csdnimg.cn/img_convert/65cbce7e6a59b5cbd26fbac8910f4c18.png)
![img](https://img-blog.csdnimg.cn/img_convert/09f64e6f90cdf8c2e95fa6c9a2fd17f8.png)
![img](https://img-blog.csdnimg.cn/img_convert/a7174149bd663e746a06eae3d69fe698.png)
![img](https://img-blog.csdnimg.cn/img_convert/b5c652df9074dbafbe612d8e05311ff9.png)
![img](https://img-blog.csdnimg.cn/img_convert/43f21b698801b3e0fa9c32c38f05b2e0.png)
**既有适合小白学习的零基础资料,也有适合3年以上经验的小伙伴深入学习提升的进阶课程,基本涵盖了95%以上Linux运维知识点,真正体系化!**
**由于文件比较大,这里只是将部分目录大纲截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新**
**如果你觉得这些内容对你有帮助,可以添加VX:vip1024b (备注Linux运维获取)**
![img](https://img-blog.csdnimg.cn/img_convert/abdc2f944fd243a53643553dd84c81a0.jpeg)
、学习笔记、源码讲义、实战项目、讲解视频,并且后续会持续更新**
**如果你觉得这些内容对你有帮助,可以添加VX:vip1024b (备注Linux运维获取)**
[外链图片转存中...(img-gyvdo32F-1712496499686)]