随笔分类 -  SpringBoot

摘要:API(Application Programming Interface),顾名思义:是一组编程接口规范,客户端与服务端通过请求响应进行数据通信。REST(Representational State Transfer)表述性状态传递,决定了接口的形式与规则。RESTful是基于http方法的AP 阅读全文
posted @ 2022-06-02 11:01 Power_Gives 阅读(68) 评论(1) 推荐(0)
摘要:依赖地址 点击查看代码 <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> Data注解 在java类上使用 阅读全文
posted @ 2022-06-02 10:37 Power_Gives 阅读(49) 评论(0) 推荐(0)
摘要:# Error:(3, 37) java: 程序包org.mybatis.spring.annotation不存在 一般从Git拉取项目下来跑的时候 一般配置没有问题,启动就提示这个 这时候重构也无效,大多数都是这个问题 打开设置 找到如图 勾选上蓝色框 再去启动 OK 解决 阅读全文
posted @ 2021-08-27 11:33 Power_Gives 阅读(10628) 评论(3) 推荐(1)
摘要:在使用SpringBoot内置Tomcat时,控制台打印中文乱码如图 看了网上很多帖子说POM添加依赖设置中文 <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</art 阅读全文
posted @ 2020-08-20 10:20 Power_Gives 阅读(784) 评论(0) 推荐(0)