SpringBoot(二)SpringBoot多环境配置

Spring框架常用注解简单介绍
SpringMVC常用注解简单介绍
SpringBoot(一)创建一个简单的SpringBoot工程
SpringBoot(二)SpringBoot多环境配置
SpringBoot(三)SpringBoot整合MyBatis
SpringBoot(四)SpringBoot整合 Redis

SpringBoot配置文件介绍

SpringBoot的配置文件用于配置SpringBoot程序,有两种格式的配置文件:

  1. .properties文件
  2. .yml文件
创建application.properties配置文件

.properties配置文件

# 设置端口号
server.port=8080
# 设置服务名称
spring.application.name=service-product

# 设置上下文,设置后访问服务时需要在url前面拼上设置的内容,这里一般设置为服务名称
spring.server.context-path=/springbootdemo
server.servlet.context-path=/springbootdemo

启动工程,然后打开浏览器输入:http://localhost:8080/springbootdemo/product/12

SpringBoot多环境配置

我们可以指定SpringBoot的激活配置文件。如果主配置文件中指定了激活的配置文件,那么即使在主配置文件中指定了配置信息,还是优先使用激活文件中的配置信息,如果激活文件中没有,就去主配置文件中去查找。

我们先创建多个环境的配置文件

配置文件

  1. application-dev.properties

    server.port=8081
    spring.application.name=service-product

    spring.server.context-path=/springbootdemo
    server.servlet.context-path=/springbootdemo

  2. application-test.properties

    server.port=8082
    spring.application.name=service-product

    spring.server.context-path=/springbootdemo
    server.servlet.context-path=/springbootdemo

  3. application-pro.properties

    server.port=8088
    spring.application.name=service-product

    spring.server.context-path=/springbootdemo
    server.servlet.context-path=/springbootdemo

  4. 修改application.properties,指定激活的配置文件

    设置端口号

    #server.port=8080

    设置服务名称

    #spring.application.name=service-product

    设置上下文,设置后访问服务时需要在url前面拼上设置的内容,这里一般设置为服务名称

    #spring.server.context-path=/springbootdemo
    #server.servlet.context-path=/springbootdemo

    #指定激活的配置文件
    spring.profiles.active=dev

打开浏览器输入:http://localhost:8081/springbootdemo/product/12(此时访问的是dev环境,端口变成了8081)

SpringBoot自定义配置

我们可以再SpringBoot配置文件中添加一些自定义配置,然后通过@Value读取配置的属性值。

## 设置端口号
#server.port=8080
## 设置服务名称
#spring.application.name=service-product
#
## 设置上下文,设置后访问服务时需要在url前面拼上设置的内容,这里一般设置为服务名称
#spring.server.context-path=/springbootdemo
#server.servlet.context-path=/springbootdemo

#指定激活的配置文件
spring.profiles.active=dev

#自定义配置
product.name=SpringBootDemo

使用@Value在Dao中读取自定义配置的属性值

@Repository
public class ProductDao {

    @Value("${product.name}")
    private String name;

    public Product getProductById(String id) {
        Product product = new Product();
        product.setId(id);
        product.setName(name);
        product.setPrice(13.6);
        return product;
    }

}

启动工程,然后打开浏览器输入:http://localhost:8081/springbootdemo/product/12

接口返回:

{
"id": "12",
"name": "SpringBootDemo",
"price": 13.6
}

最后编辑于:2020-08-19 16:27
© 著作权归作者所有,转载或内容合作请联系作者

喜欢的朋友记得点赞、收藏、关注哦!!!

相关推荐
xoxo-Rachel5 分钟前
(超级详细!!!)解决“com.mysql.jdbc.Driver is deprecated”警告:详解与优化
java·数据库·mysql
乌啼霜满天2497 分钟前
JDBC编程---Java
java·开发语言·sql
肥猪猪爸17 分钟前
使用卡尔曼滤波器估计pybullet中的机器人位置
数据结构·人工智能·python·算法·机器人·卡尔曼滤波·pybullet
linux_carlos17 分钟前
环形缓冲区
数据结构
色空大师20 分钟前
23种设计模式
java·开发语言·设计模式
闲人一枚(学习中)20 分钟前
设计模式-创建型-建造者模式
java·设计模式·建造者模式
blessing。。23 分钟前
I2C学习
linux·单片机·嵌入式硬件·嵌入式
readmancynn29 分钟前
二分基本实现
数据结构·算法
萝卜兽编程31 分钟前
优先级队列
c++·算法