1、热部署 修改完代码,想让SpringBoot自动加载我们修改的内容(pom.xml添加依赖) <!-- spring-boot的开发工具,可以在修改代码时,不需要手动重启服务器 --> <dependency> <groupId>org.springframework.boot</groupId ...
分类:
编程语言 时间:
2020-07-04 13:29:16
阅读次数:
108
一、配置文件加载 1、Controller中配置并指向文件 @Controller @PropertySource(value = { "application.properties" })//指定配置文件 2、在变量上打注解并指明配置文件中的key @Value("${web.upload.fil ...
分类:
编程语言 时间:
2020-07-02 00:20:10
阅读次数:
80
1、以eureka server启动类为例,将启动类改为以下内容: import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.boot.SpringApplication;import org. ...
分类:
编程语言 时间:
2020-06-30 20:39:42
阅读次数:
85
1.添加 Pom 文件 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.9.2</version> </dependency> <dependenc ...
分类:
编程语言 时间:
2020-06-20 23:49:08
阅读次数:
66
java map如何转为配置文件啊。-CSDN问答 https://ask.csdn.net/questions/216007 SpringBoot读取配置文件中的数据到map和list_空夜's Blog-CSDN博客_springboot 配置map https://blog.csdn.net/ ...
分类:
编程语言 时间:
2020-06-18 19:25:30
阅读次数:
73
1、pom文件引入druid数据源 <!--druid数据源--> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.1.8</version> </dependency> 2、 ...
分类:
编程语言 时间:
2020-06-05 15:19:34
阅读次数:
73
配置文件配置暴露一些密码问题处理: jasypt 是一个简单易用的加解密Java库 相关源码github地址 github:https://github.com/ulisesbocchio/jasypt-spring-boot https://github.com/gxing19/Spring-Bo ...
分类:
数据库 时间:
2020-06-03 15:44:50
阅读次数:
110
一、springboot中配置静态资源 在application配置文件中添加: #静态资源配置 #用于告诉springboot应该在何处寻找静态资源,springboot默认的位置和优先级:spring.resources.static-locations=classpath:/static,cl ...
分类:
编程语言 时间:
2020-05-29 23:39:51
阅读次数:
125
```#配置文件加载位置springboot启动会扫描以下位置的application.properties或者application.yml文件作为Spring boot的默认配置文件file:./configfile:./classpath:/config/classpath:/优先级由高到低,... ...
分类:
编程语言 时间:
2020-05-24 10:10:14
阅读次数:
57
SpringBoot 配置文件 一、配置文件 SpringBoot使用一个全局的配置文件,配置文件名是固定的; application.properties application.yml 配置文件的作用:修改SpringBoot自动配置的默认值;SpringBoot在底层都给我们自动配置好; YA ...
分类:
编程语言 时间:
2020-05-24 09:48:27
阅读次数:
51