Spring Boot之配置文件application.properties

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类,结果如下图:

更多信息请访问 微儿博客

时间: 2024-10-09 23:46:59

Spring Boot之配置文件application.properties的相关文章

Spring Boot中配置文件application.properties里面配置项的引用

方法1:绑定对象bean调用 1.在application.properties或者application.yml里面添加我们的配置项: 2.创建一个配置类(该类和我们上面配置项的属性一一对应): import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; @Component @ConfigurationP

【spring boot】配置文件 application.properties 属性解析

1.JPA命名策略 spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.DefaultNamingStrategy 有两种值可以配置分别为: 第一:org.hibernate.cfg.DefaultNamingStrategy 第二:org.hibernate.cfg.ImprovedNamingStrategy DefaultNamingStrategy这个直接映射,不会做过多的处理(前提没有设置@Table,@Column等属性的

spring boot 无法读取application.properties问题

spring boot 无法读取application.properties问题 https://bbs.csdn.net/topics/392374488 https://www.cnblogs.com/mr-wuxiansheng/p/6891925.html 关于spring获取webApplication.getBean多种途径和简单解释 https://blog.csdn.net/superdog007/article/details/43482427?readlog 原文地址:htt

Spring boot 通用配置文件模板

001 # ===================================================================002 # COMMON SPRING BOOT PROPERTIES003 #004 # This sample file is provided as a guideline. Do NOT copy it in its005 # entirety to your own application.               ^^^006 # ==

Spring Boot2 系列教程(四)理解Spring Boot 配置文件 application.properties

在 Spring Boot 中,配置文件有两种不同的格式,一个是 properties ,另一个是 yaml . 虽然 properties 文件比较常见,但是相对于 properties 而言,yaml 更加简洁明了,而且使用的场景也更多,很多开源项目都是使用 yaml 进行配置(例如 Hexo).除了简洁,yaml 还有另外一个特点,就是 yaml 中的数据是有序的,properties 中的数据是无序的,在一些需要路径匹配的配置中,顺序就显得尤为重要(例如我们在 Spring Cloud

Spring boot配置文件application.properties

# =================================================================== # COMMON SPRING BOOT PROPERTIES # # This sample file is provided as a guideline. Do NOT copy it in its # entirety to your own application.               ^^^ # =====================

Spring boot配置文件 application.properties

# =================================================================== # COMMON SPRING BOOT PROPERTIES # # This sample file is provided as a guideline. Do NOT copy it in its # entirety to your own application.               ^^^ # =====================

附录 B. Spring Boot 配置文件 application.properties

#########COMMON SPRING BOOT PROPERTIES ######========CORE PROPERTIES=========== #SPRING CONFIG (ConfigFileApplicationListener) spring.config.name= # config file name (default to 'application') spring.config.location= # location of config file #PROFIL

Spring Boot 配置文件application.properties

#########COMMON SPRING BOOT PROPERTIES ######========CORE PROPERTIES=========== #SPRING CONFIG (ConfigFileApplicationListener) spring.config.name= # config file name (default to 'application') spring.config.location= # location of config file #PROFIL