2022年3月13日

摘要: 1.首先在springboot创建配置文件CorsConfig.java。如下图,重启后可实现跨域,前端无需再配置。 2.java类中内容如下: import org.springframework.context.annotation.Bean; import org.springframewor 阅读全文

posted @ 2022-03-13 09:59 晓晓晓渡 阅读(844) 评论(0) 推荐(0) 编辑


2022年3月12日

摘要: 1.查看端口占用,获取到pid netstat -ano | findstr "端口号" 然后去任务管理器根据对应pid管理进程。 2.查看pid对应的进程 tasklist | findstr "进程ID" 3.终止进程 taskkill /F /PID 进程ID 阅读全文

posted @ 2022-03-12 20:27 晓晓晓渡 阅读(31) 评论(0) 推荐(0) 编辑

摘要: 1.目录下各文件含义 entity:写实体类(Class) 1)可以使用Lombok插件来代替创建get,set,有参,无参构造方法 mapper:写数据库查询接口(Interface) 2)数据库中查询的结构都是List类型 controller:写controller类 service: res 阅读全文

posted @ 2022-03-12 20:19 晓晓晓渡 阅读(267) 评论(0) 推荐(0) 编辑


Copyright © 2024 晓晓晓渡
Powered by .NET 9.0 on Kubernetes