摘要: JAVA端口号被占用 解决方案 根据提示端口号查询PID netstat -aon|findstr "8089" 查询所有端口号PID netstat -aon 找到进程 asklist|findstr "xxx" 杀死进程 taskkill /pid xxx -t -f 阅读全文
posted @ 2022-06-02 11:23 Power_Gives 阅读(411) 评论(0) 推荐(0)
摘要: API(Application Programming Interface),顾名思义:是一组编程接口规范,客户端与服务端通过请求响应进行数据通信。REST(Representational State Transfer)表述性状态传递,决定了接口的形式与规则。RESTful是基于http方法的AP 阅读全文
posted @ 2022-06-02 11:01 Power_Gives 阅读(61) 评论(1) 推荐(0)
摘要: 依赖地址 点击查看代码 <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> Data注解 在java类上使用 阅读全文
posted @ 2022-06-02 10:37 Power_Gives 阅读(43) 评论(0) 推荐(0)