springBoot 读取properties文件

2024-09-08 01:38

本文主要是介绍springBoot 读取properties文件,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1.创建maven工程,在pom文件中添加依赖

复制代码

 1   <parent>2     <groupId>org.springframework.boot</groupId>3     <artifactId>spring-boot-starter-parent</artifactId>4     <version>1.5.9.RELEASE</version>5     </parent>6 7   <dependencies>8     <dependency>9         <groupId>org.springframework.boot</groupId>
10         <artifactId>spring-boot-starter-web</artifactId>
11     </dependency>
12     <!-- 单元测试使用 -->
13     <dependency>
14         <groupId>org.springframework.boot</groupId>
15         <artifactId>spring-boot-starter-test</artifactId>
16     </dependency>
17   
18     <dependency>
19       <groupId>junit</groupId>
20       <artifactId>junit</artifactId>
21       <scope>test</scope>
22     </dependency>
23    
24   </dependencies>

复制代码

 

2.创建项目启动类 StartApplication.java

复制代码

 1 package com.kelly.controller;2 3 import org.springframework.boot.SpringApplication;4 import org.springframework.boot.autoconfigure.EnableAutoConfiguration;5 import org.springframework.context.annotation.ComponentScan;6 import org.springframework.context.annotation.Configuration;7 8 @Configuration9 @EnableAutoConfiguration //自动加载配置信息
10 @ComponentScan("com.kelly")//使包路径下带有注解的类可以使用@Autowired自动注入
11 public class StartApplication {
12     public static void main(String[] args) {
13         SpringApplication.run(StartApplication.class, args);
14     }
15 }

复制代码

3.编辑配置文件application.properties及自定义配置文件define.properties

  application.properties

复制代码

#访问的根路径
server.context-path=/springboot
#端口号
server.port=8081
#session失效时间
server.session-timeout=30
#编码
server.tomcat.uri-encoding=utf-8test.name=kelly
test.password=admin123

复制代码

  define.properties

defineTest.pname=test
defineTest.password=test123

4.读取application.properties配置文件中的属性值

  FirstController.java

复制代码

 1 package com.kelly.controller;2 3 import org.springframework.beans.factory.annotation.Value;4 import org.springframework.stereotype.Controller;5 import org.springframework.web.bind.annotation.RequestMapping;6 import org.springframework.web.bind.annotation.ResponseBody;7 8 9 @Controller
10 public class FirstController {
11     
12     @Value("${test.name}")
13     private String name;
14     
15     @Value("${test.password}")
16     private String password;
17     
18     @RequestMapping("/")
19     @ResponseBody
20     String home()
21     {
22         return "Hello Springboot!";
23     }
24     
25     @RequestMapping("/hello")
26     @ResponseBody
27     String hello()
28     {
29         return "name: " + name + ", " + "password: " + password;
30     }
31 }

复制代码

5.打开浏览器,输入 http://localhost:8081/springboot/hello 即可看到结果

 

 

 

6.使用java bean的方式读取自定义配置文件 define.properties

  DefineEntity.java

复制代码

 1 package com.kelly.entity;2 3 import org.springframework.boot.context.properties.ConfigurationProperties;4 import org.springframework.context.annotation.PropertySource;5 import org.springframework.stereotype.Component;6 7 @Component8 @ConfigurationProperties(prefix="defineTest")9 @PropertySource("classpath:define.properties")
10 public class DefineEntity {
11     
12     private String pname;
13     
14     private String password;
15 
16     public String getPname() {
17         return pname;
18     }
19 
20     public void setPname(String pname) {
21         this.pname = pname;
22     }
23 
24     public String getPassword() {
25         return password;
26     }
27 
28     public void setPassword(String password) {
29         this.password = password;
30     }
31     
32     
33 }

复制代码

  SecondController.java

复制代码

 1 package com.kelly.controller;2 3 import org.springframework.beans.factory.annotation.Autowired;4 import org.springframework.stereotype.Controller;5 import org.springframework.web.bind.annotation.RequestMapping;6 import org.springframework.web.bind.annotation.ResponseBody;7 8 import com.kelly.entity.DefineEntity;9 
10 @Controller
11 public class SecondController {
12     
13     @Autowired
14     DefineEntity defineEntity;
15     
16     @RequestMapping("/define")
17     @ResponseBody
18     String define()
19     {
20         return "test.name:" + defineEntity.getPname() + ", test.password:" + defineEntity.getPassword();
21     }
22 }

复制代码

7.打开浏览器,访问 http://localhost:8081/springboot/define,可以看到输出结果

这篇关于springBoot 读取properties文件的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1146747

相关文章

Spring LDAP目录服务的使用示例

《SpringLDAP目录服务的使用示例》本文主要介绍了SpringLDAP目录服务的使用示例... 目录引言一、Spring LDAP基础二、LdapTemplate详解三、LDAP对象映射四、基本LDAP操作4.1 查询操作4.2 添加操作4.3 修改操作4.4 删除操作五、认证与授权六、高级特性与最佳

Spring Shell 命令行实现交互式Shell应用开发

《SpringShell命令行实现交互式Shell应用开发》本文主要介绍了SpringShell命令行实现交互式Shell应用开发,能够帮助开发者快速构建功能丰富的命令行应用程序,具有一定的参考价... 目录引言一、Spring Shell概述二、创建命令类三、命令参数处理四、命令分组与帮助系统五、自定义S

SpringSecurity JWT基于令牌的无状态认证实现

《SpringSecurityJWT基于令牌的无状态认证实现》SpringSecurity中实现基于JWT的无状态认证是一种常见的做法,本文就来介绍一下SpringSecurityJWT基于令牌的无... 目录引言一、JWT基本原理与结构二、Spring Security JWT依赖配置三、JWT令牌生成与

Java中Date、LocalDate、LocalDateTime、LocalTime、时间戳之间的相互转换代码

《Java中Date、LocalDate、LocalDateTime、LocalTime、时间戳之间的相互转换代码》:本文主要介绍Java中日期时间转换的多种方法,包括将Date转换为LocalD... 目录一、Date转LocalDateTime二、Date转LocalDate三、LocalDateTim

如何配置Spring Boot中的Jackson序列化

《如何配置SpringBoot中的Jackson序列化》在开发基于SpringBoot的应用程序时,Jackson是默认的JSON序列化和反序列化工具,本文将详细介绍如何在SpringBoot中配置... 目录配置Spring Boot中的Jackson序列化1. 为什么需要自定义Jackson配置?2.

Java中使用Hutool进行AES加密解密的方法举例

《Java中使用Hutool进行AES加密解密的方法举例》AES是一种对称加密,所谓对称加密就是加密与解密使用的秘钥是一个,下面:本文主要介绍Java中使用Hutool进行AES加密解密的相关资料... 目录前言一、Hutool简介与引入1.1 Hutool简介1.2 引入Hutool二、AES加密解密基础

Spring Boot项目部署命令java -jar的各种参数及作用详解

《SpringBoot项目部署命令java-jar的各种参数及作用详解》:本文主要介绍SpringBoot项目部署命令java-jar的各种参数及作用的相关资料,包括设置内存大小、垃圾回收... 目录前言一、基础命令结构二、常见的 Java 命令参数1. 设置内存大小2. 配置垃圾回收器3. 配置线程栈大小

SpringBoot实现微信小程序支付功能

《SpringBoot实现微信小程序支付功能》小程序支付功能已成为众多应用的核心需求之一,本文主要介绍了SpringBoot实现微信小程序支付功能,文中通过示例代码介绍的非常详细,对大家的学习或者工作... 目录一、引言二、准备工作(一)微信支付商户平台配置(二)Spring Boot项目搭建(三)配置文件

解决SpringBoot启动报错:Failed to load property source from location 'classpath:/application.yml'

《解决SpringBoot启动报错:Failedtoloadpropertysourcefromlocationclasspath:/application.yml问题》这篇文章主要介绍... 目录在启动SpringBoot项目时报如下错误原因可能是1.yml中语法错误2.yml文件格式是GBK总结在启动S

Spring中配置ContextLoaderListener方式

《Spring中配置ContextLoaderListener方式》:本文主要介绍Spring中配置ContextLoaderListener方式,具有很好的参考价值,希望对大家有所帮助,如有错误... 目录Spring中配置ContextLoaderLishttp://www.chinasem.cntene