二、SpringBoot 配置文件 1、 配置文件的路径及优先级 <1>、配置文件的路径 SpringBoot 使用了一个全局的配置文件 application.properties,该配置文件可以放置在以下几个位置: 根目录下 项目根目录中 config 目录下 项目的 resources 目录下 ...
分类:
其他好文 时间:
2020-03-16 14:35:41
阅读次数:
64
版权声明:本文为CSDN博主「IT_faquir」的原创文章,遵循 CC 4.0 BY-SA 版权协议原文链接:https://blog.csdn.net/IT_faquir/article/details/80869578 文章内容: SpringBoot配置文件的基本使用; yaml配置文件优先 ...
分类:
编程语言 时间:
2020-03-13 13:22:23
阅读次数:
734
@ "toc" 首先要导入log4j属性文件 Log4j.properties 在resources文件夹下导入log4j.properties文件,复制下面的内容时,每行后面如果有空格的话一定要去掉,log4j.appender.File.File为log日志存放的路径。 Pom.xml添加依赖 ...
分类:
编程语言 时间:
2020-03-08 17:22:35
阅读次数:
89
原因:拦截器加载于IOC之前,所以这个时候注入RedisTemplate时是null 在SpringBoot配置类中做出如下调整,将自定义拦截器也加入到配置中,在拦截器执行的时候实例化拦截器Bean ...
分类:
编程语言 时间:
2020-03-05 22:31:59
阅读次数:
360
SpringBoot配置属性系列 SpringBoot配置属性之MVC SpringBoot配置属性之Server SpringBoot配置属性之DataSource SpringBoot配置属性之NOSQL SpringBoot配置属性之MQ SpringBoot配置属性之Security Spr ...
分类:
编程语言 时间:
2020-03-03 12:49:22
阅读次数:
101
# # COMMON SPRING BOOT PROPERTIES## This sample file is provided as a guideline. Do NOT copy it in its# entirety to your own application. ^^^# # # COR ...
分类:
编程语言 时间:
2020-02-28 17:11:13
阅读次数:
63
SpringBoot配置SSL同时支持http和https访问:https://blog.csdn.net/qq_38288606/article/details/89478353#comments ...
分类:
编程语言 时间:
2020-02-24 21:04:25
阅读次数:
82
基础配置 maven的profile方式 springboot的profile使用方式 开发模式配置 配置tomcat 配置web相关 配置日志 配置JSP 配置数据源 集成配置 集成druid 集成mybatis 集成Freemarker 集成redis 集成dubbo 集成zookeeper 集 ...
分类:
编程语言 时间:
2020-02-23 11:38:17
阅读次数:
71
CONDITIONS EVALUATION REPORT Positive matches: AopAutoConfiguration matched: - @ConditionalOnProperty (spring.aop.auto=true) matched (OnPropertyCondit ...
分类:
编程语言 时间:
2020-02-01 16:40:21
阅读次数:
357
RandomValuePropertySource:配置文件中可以使用随机数${random.value}、${random.int}、${random.long}、${random.int(10)}、${random.int[123,456]} 属性占位符app.name=MyAppapp.des ...
分类:
编程语言 时间:
2020-02-01 14:44:06
阅读次数:
79