SpringBoot中读取application.properties配置文件的方法
application.properties有以下这几条数据

方法一:@Value注解+@Component
建议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 UserController {
@Value("${wx.open.app_id}")
private String appid;
@Value("${wx.open.app_secret}")
private String secret;
@Value("${wx.open.redirect_url}")
private String url;
@RequestMapping("hello")
public String test(){
return appid+"---"+secret+"---"+url;
}
}
另一种方法
创建一个WeProperties
@Component
@Data
public class WeProperties {
@Value("${wx.open.app_id}")
private String appid;
@Value("${wx.open.app_secret}")
private String secret;
@Value("${wx.open.redirect_url}")
private String url;
}
Controller层
@RestController
public class UserController {
@Autowired
private WeProperties properties;
@RequestMapping("hello")
public String test(){
return properties.getAppid()+"---"+properties.getSecret()+"---"+properties.getUrl();
}
}

方法二:@Component+@ConfigurationProperties
创建一个WeProperties
后面的属性名一定要保持一致
@Component
@ConfigurationProperties(prefix = "wx.open")
@Data
public class WeProperties {
private String appid;
private String app_secret;
private String redirect_url;
}
Controller层
@RestController
public class UserController {
@Autowired
private WeProperties properties;
@RequestMapping("hello")
public String test(){
return properties.getAppid()+"---"+properties.getApp_secret()+"---"+properties.getRedirect_url();
}
}

方法三:@ConfigurationProperties+@EnableConfigurationProperties
创建一个WeProperties
后面的属性名一定要保持一致
@ConfigurationProperties(prefix = "wx.open")
@Data
public class WeProperties {
private String appid;
private String app_secret;
private String redirect_url;
}
启动类添加@EnableConfigurationProperties
@SpringBootApplication
@EnableConfigurationProperties(value = WeProperties.class)
public class PropertiesApplication {
public static void main(String[] args) {
SpringApplication.run(PropertiesApplication.class,args);
}
}
Controller层
@RestController
public class UserController {
@Autowired
private WeProperties properties;
@RequestMapping("hello")
public String test(){
return properties.getAppid()+"---"+properties.getApp_secret()+"---"+properties.getRedirect_url();
}
}
到此这篇关于SpringBoot中读取application.properties配置文件的方法的文章就介绍到这了,更多相关SpringBoot读取application.properties内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
java 将 list 字符串用逗号隔开拼接字符串的多种方法
这篇文章主要介绍了java 将 list 字符串用逗号隔开拼接字符串,本文给大家分享四种方法,每种方法通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2021-12-12
springboot serviceImpl初始化注入对象实现方式
这篇文章主要介绍了springboot serviceImpl初始化注入对象实现方式,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2023-05-05
解决问题:Failed to execute goal org.apache.m
这篇文章主要给大家介绍了关于解决问题:Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources的相关资料,文中将解决的办法介绍的非常详细,需要的朋友可以参考下2023-03-03


最新评论