【SpringBoot】SpringBoot之入门配置文件

介绍:example02
相信很多人选择Spring Boot主要是考虑到它既能兼顾Spring的强大功能,还能实现快速开发的便捷。我们在Spring Boot使用过程中,最直观的感受就是没有了原来自己整合Spring应用时繁多的XML配置内容,替代它的是在pom.xml中引入模块化的Starter POMs,其中各个模块都有自己的默认配置,所以如果不是特殊应用场景,就只需要在application.properties中完成一些属性配置就能开启各模块的应用。

配置文件application.properties的使用,主要用来配置数据库连接、日志相关配置等。除了这些配置内容之外,本文将具体介绍一些在application.properties配置中的其他特性和使用方法。

我们在使用Spring Boot的时候,通常也需要定义一些自己使用的属性,我们可以如下方式直接定义:
application.properties

test.springboot.name=学习
test.springboot.context=我

#参数间引用
test.springboot.desc=${test.springboot.context}爱${test.springboot.name}

#随机数
##随机字符串
test.springboot.value=${random.value}
##随机int
test.springboot.number=${random.int}
##随机long
test.springboot.bignumber=${random.long}
##10以内的随机数
test.springboot.test1=${random.int(10)}
##10-20的随机数
test.springboot.test2=${random.int[10,20]}

#多环境配置文件激活属性
spring.profiles.active=dev

# 服务端口
server.port=9090

##设置utf-8编码集
server.tomcat.uri-encoding=UTF-8
spring.http.encoding.charset=UTF-8
spring.http.encoding.enabled=true
spring.http.encoding.force=true
spring.messages.encoding=UTF-8

test.springboot.desc参数引用了上文中定义的name和context属性,最后该属性的值就是:我爱学习

引用值:通过@Value(“${属性名}”)注解来加载对应的配置属性,具体如下:
创建实体类:TestProperties

package com.lyd.entity;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;

@Component
public class TestProperties {
    @Value("${test.springboot.name}")
    private String name;
    @Value("${test.springboot.context}")
    private String context;
    @Value("${test.springboot.desc}")
    private String desc;
    //测试随机数配置
    @Value("${test.springboot.value}")
    private String value;

    //get/set方法...
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getContext() {
        return context;
    }
    public void setContext(String context) {
        this.context = context;
    }
    public String getDesc() {
        return desc;
    }
    public void setDesc(String desc) {
        this.desc = desc;
    }
    public String getValue() {
        return value;
    }
    public void setValue(String value) {
        this.value = value;
    }   
}

Application.java

package com.springboot.demo;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
 * @Author : xiaolin
 * @Description: Created by Administrator on 2017/11/22.
 */
@SpringBootApplication
public class Application {
    public static void main(String[] args) {
        SpringApplication.run(Application.class,args);
    }
}

ApplicationTest.java单元测试类

package com.lyd;

import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.hibernate.validator.internal.util.privilegedactions.GetConstraintValidatorList;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.test.SpringApplicationConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

import com.lyd.entity.TestProperties;

@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(Application.class)
public class ApplicationTest {

    private static final Log log = LogFactory.getLog(ApplicationTest.class);

    @Autowired
    private TestProperties testProperties;

    @Test
    public void getHello(){
        Assert.assertEquals(testProperties.getName(), "学习");
        Assert.assertEquals(testProperties.getDesc(), "我爱学习");
        System.out.println(testProperties.getName());
        log.info("随机字符串测试:"+testProperties.getValue());
    }

}

pom文件

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.lyd</groupId>
    <artifactId>springboot-lyd</artifactId>
    <version>0.0.1-SNAPSHOT</version>
  </parent>
  <artifactId>example02</artifactId>
</project>

项目目录
这里写图片描述

运行getHello方法,可以读到application.properties中的数据:
这里写图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值