Spring如何获取配置在application.properties文件中属性的值?
程序员文章站
2022-05-01 23:13:26
...
通过 @Value("${com.springboot.name}")
注解的方式:
application.properties 文件的内容如下:
com.springboot.name=qujianlei
com.springboot.title=studyhadoop
com.springboot.desc=${com.springboot.name} work hard ${com.springboot.title}
com.springboot.random.string=${random.value}
com.springboot.random.int=${random.int}
com.springboot.random.long=${random.long}
比方说我们现在要在 Controller 中获取 com.springboot.name 的值,只需像下面这样既可:
package com.qjl.bootstart.controller;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import com.qjl.bootstart.yml.User;
import com.qjl.bootstart.yml.YmlUtil;
/**
* 类名称:SpringMVC的控制器
* 全限定性类名: com.qjl.bootstart.controller.BootController
* @author 曲健磊
* @date 2018年8月4日上午10:38:23
* @version V1.0
*/
@RestController
@RequestMapping("/boot")
public class BootController {
@Value("${com.springboot.name}")
private String name;
@Value("${com.springboot.title}")
private String title;
@Value("${com.springboot.desc}")
private String desc;
@Value("${com.springboot.random.string}")
private String str;
@Value("${com.springboot.random.int}")
private Integer integer;
@Value("${com.springboot.random.long}")
private Long _long;
@RequestMapping("/hello")
public String boot() {
StringBuffer buffer = new StringBuffer();
buffer.append("hello SrpingBoot properties<br/>");
buffer.append("[").append(name).append("]<br/>");
buffer.append("[").append(title).append("]<br/>");
buffer.append("[").append(desc).append("]<br/>");
return buffer.toString();
}
@RequestMapping("/random")
public String testRandom() {
StringBuffer buffer = new StringBuffer();
buffer.append("hello SrpingBoot random<br/>");
buffer.append("[").append(str).append("]<br/>");
buffer.append("[").append(integer).append("]<br/>");
buffer.append("[").append(_long).append("]<br/>");
return buffer.toString();
}
}
效果如下:
上一篇: Thymeleaf 下拉框赋值并判断选中
下一篇: selenium 中的JS操作
推荐阅读
-
ssm框架集成时,在spring配置文文件中集成mybatis时,在sqlSessionFactory中的属性configuration配置日志出错
-
Spring框架中引入外部配置文件的属性值
-
SpringBoot获取YAML配置文件中的自定义属性值
-
如何 在Spring MVC中 使用多个Spring和MyBatis的xml配置文件(多模块配置)
-
Spring框架中引入外部配置文件的属性值
-
springboot项目如何获取配置文件中的值?
-
springboot中如何在controller之外的文件中获取application.properties中的配置信息
-
在utils类中获取配置文件application.properties中的属性
-
Spring如何获取配置在application.properties文件中属性的值?
-
Spring boot 读取配置文件(application.yml)中的属性值