Spring boot工具类静态属性注入及多环境配置详解
程序员文章站
2023-12-04 17:03:46
由于需要访问mongodb,但是本地开发环境不能直接连接mongodb,需要通过securecrt使用127.0.0.2本地ip代理。但是程序部署到线上生产环境后,是可以直...
由于需要访问mongodb,但是本地开发环境不能直接连接mongodb,需要通过securecrt使用127.0.0.2本地ip代理。但是程序部署到线上生产环境后,是可以直接访问mongodb的,因此开发好程序后,总是要修改一下mongodb服务器的ip才能提交代码,这样很是不方便。
private static final string pubchat_host = "127.0.0.2"; // private static final string pubchat_host = "prod_mongo_server_ip";
由于没有使用spring-boot自带的 spring-boot-starter-data-mongodb ,而是使用 mongo-java-driver 访问mongodb,因此在程序中需要定义一些访问mongodb的配置,比如服务器地址、ip端口、数据库名……使用一个工具类的静态变量声明这些配置信息,配置信息的值保存在application.yml 配置文件中。通过 @configurationproperties 注入。
静态工具类定义
属性是静态的:
private static string chat_username;
然后通过非静态的 set方法注入:
@value("${mongo.config.username}") public void setchat_username(string chat_username) { mongoconfig.chat_username = chat_username; }
其他类通过公有的静态get方法获取属性:
public static string getchat_username() { return chat_username; }
prefix 的值在 application.yml 中定义
@configurationproperties(prefix = "mongo.config") public class mongoconfig { .....
整个完整代码如下:
import org.springframework.beans.factory.annotation.value; import org.springframework.boot.context.properties.configurationproperties; import org.springframework.stereotype.component; /** * created by administrator on 2018/4/4. */ @component(value = "mongoconfig") @configurationproperties(prefix = "mongo.config") public class mongoconfig { private static string chat_username; private static string chat_password ; private static string chat_host; private static int chat_port; private static string chat_dbname; private static string chat_collprefix; public static string getchat_username() { return chat_username; } @value("${mongo.config.username}") public void setchat_username(string chat_username) { mongoconfig.chat_username = chat_username; } public static string getchat_password() { return chat_password; } @value("${mongo.config.password}") public void setchat_password(string chat_password) { mongoconfig.chat_password = chat_password; } public static string getchat_host() { return chat_host; } @value("${mongo.config.host}") public void setchat_host(string chat_host) { mongoconfig.chat_host = chat_host; } public static int getchat_port() { return chat_port; } @value("${mongo.config.port}") public static void setchat_port(int chat_port) { mongoconfig.chat_port = chat_port; } public static string getchat_dbname() { return chat_dbname; } @value("${mongo.config.dbname}") public void setchat_dbname(string chat_dbname) { mongoconfig.chat_dbname = chat_dbname; } public static string getchat_collprefix() { return chat_collprefix; } @value("${mongo.config.collprefix}") public void setchat_collprefix(string chat_collprefix) { mongoconfig.chat_collprefix = chat_collprefix; } }
yml配置文件定义
通过 profile 指定不同环境下使用不同的配置。active 指定激活的环境,比如 dev 或者 prod
spring: application: name: textml profiles: active: dev --- spring: profiles: dev, default,test mongo: config: username: "xxx" password: "xxx" host: "127.0.0.2" port: 10001 dbname: "xxx" collprefix: "xxxx" --- spring: profiles: prod mongo: config: username: "xxx" password: "xxx" host: "xxxx" port: 10001 dbname: "xxxx" collprefix: "xxx"
测试
由于使用了mongodb自定义配置,故使用 @springbootapplication(exclude = mongoautoconfiguration.class) 排除spring-boot 中自带的mongodb配置。
@springbootapplication(exclude = mongoautoconfiguration.class) public class application { public static void main(string[] args) { springapplication.run(application.class, args); system.out.println("--config value--username:" + mongoconfig.getchat_username()); } }
参考:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。