码迷,mamicode.com
首页 > 移动开发 > 详细

Spring Boot之配置文件application.properties

时间:2016-12-19 22:29:06      阅读:332      评论:0      收藏:0      [点我收藏+]

标签:配置文件   java   博客   spring boot   

Spring Boot默认的配置文件为application.properties,放在src/main/resources目录下或者类路径的/config目录下,作为Spring Boot的全局配置文件,对一些默认的配置进行修改。

接下来使用例子展示Spring Boot配置文件的用法:

首先在src/main/resources下新建application.properties文件,内容如下

author.name=微儿博客
author.sex=男

创建controller类

ackage com.springboot.properties;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
//不需要指定配置文件的位置,因为使用的默认的配置文件
@RestController
public class DemoController {
	
	@Value("${author.name}")//注入配置文件中的值
	private String name;
	@Value("${author.sex}")
	private String sex;
	
	@RequestMapping("/")
	public String index(){
		return name + ":" + sex;
	}
}

创建入口类

package com.springboot.properties;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class App {
	
	public static void main(String[] args) {
		SpringApplication.run(App.class, args);
	}
}

执行:

技术分享

那么如何使用其他的配置文件呢?

新建author.properties,内容如下:

person.name=weare
person.sex=man

修改DemoController为:

@RestController
@PropertySource("classpath:author.properties")//指定配置文件
public class DemoController {
	
	@Value("${person.name}")
	private String name;
	@Value("${person.sex}")
	private String sex;
	
	@RequestMapping("/")
	public String index(){
		return name + ":" + sex;
	}
}

运行,如图

技术分享

上例中属性都是通过@Value逐个注入的,但是如果注入的属性很多就会很麻烦,接下来使用@ConfigurationProperties将配置文件属性和Bean的属性关联

创建Author类:

package com.springboot.properties;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@Component//声明这是一个Bean
@ConfigurationProperties(prefix="author")//指定配置文件中的前缀
public class Author {
	
	private String name;
	
	private String sex;
	
	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getSex() {
		return sex;
	}

	public void setSex(String sex) {
		this.sex = sex;
	}
}

修改DemoController类:

@RestController
@ConfigurationProperties
public class DemoController {
	
	@Autowired
	private Author author;
	
	@RequestMapping("/")
	public String index(){
		return author.getName() + ":" + author.getSex();
	}
}

运行App类,结果如下图:

技术分享

更多信息请访问 微儿博客

本文出自 “c67ed4” 博客,请务必保留此出处http://c67ed4.blog.51cto.com/3429042/1884005

Spring Boot之配置文件application.properties

标签:配置文件   java   博客   spring boot   

原文地址:http://c67ed4.blog.51cto.com/3429042/1884005

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!