springboot
人生海海~
这个作者很懒,什么都没留下…
展开
-
springboot 记录
@SpringBootTest@RunWith(SpringRunner.class)public class BaseTest {}```No active profile set, falling back to default profiles:再application.propertiesspring.profiles.active=dev指定端口:server.port=7090原创 2022-04-26 15:56:13 · 256 阅读 · 0 评论 -
理解spring-boot-starter-parent
一、理解spring-boot-starter-parent通过spring initializr,我们可以快速构建一个springboot应用,如果你选择的是Maven来管理项目,在默认的pom文件中有这么一个section:<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId&g转载 2021-12-16 22:40:28 · 1689 阅读 · 0 评论 -
SpringBoot集成mybatis的方式打印sql
背景这里都是yaml的书写格式,如果是properties则修改成对应的格式即可在控制台上打印sql语句mybatis: configuration: log-impl: org.apache.ibatis.logging.stdout.StdOutImpl在log日志中打印logging: level: com.eth.wallet.mapper: debug 感谢博主:https://blog.csdn.net/qq_37737274/article/detail原创 2021-11-21 21:33:35 · 135 阅读 · 0 评论 -
Caffeine 缓存
优秀文章1优秀文章2https://www.jianshu.com/p/9a80c662dac4https://www.jianshu.com/p/0fd4468055a9https://zhuanlan.zhihu.com/p/109226599原创 2021-11-21 21:17:08 · 201 阅读 · 0 评论 -
SpringBoot——spring.profiles.active=@profiles.active@ 的使用
现在在的公司用spring.profiles.active=@profiles.active@ 当我看到这个的时候,一脸蒙蔽,这个@ 是啥意思。这里其实是配合 maven profile进行选择不同配置文件进行开发实战1.构建一个springboot 项目这里使用idea进行构建的,这个过程省略2.pom文件配置<profiles> <profile> <!-- 生产环境 --> <id&g转载 2021-11-14 22:21:57 · 624 阅读 · 0 评论 -
springboot——配置文件
https://blog.csdn.net/enxiaobai123/article/details/105341181https://www.jianshu.com/p/60b34464ca58https://zhuanlan.zhihu.com/p/57693064https://blog.didispace.com/spring-boot-learning-21-1-3/https://segmentfault.com/a/1190000014206897等待整理原创 2021-11-14 21:56:32 · 272 阅读 · 0 评论