博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SpringMVC加载配置Properties文件的几种方式
阅读量:6294 次
发布时间:2019-06-22

本文共 5507 字,大约阅读时间需要 18 分钟。

最近开发的项目使用了SpringMVC的框架,用下来感觉SpringMVC的代码实现的非常优雅,功能也非常强大,网上介绍Controller参数绑定、URL映射的文章都很多了,写这篇博客主要总结一下SpringMVC加载配置Properties文件的几种方式 通过读取Config文件的配置 例如:
Map
group = ConfigurationManager.GetConfiguration("config1"); this.setBcpApi(group.get("BCP.Webapi")); this.setAppCode(group.get("BCP.AppCode")); this.setGetCustomerApi(group.get("GetCustomer"));
1.通过context:property-placeholde实现配置文件加载  1.1、在spring.xml中加入context相关引用[html] view plain copy
1.2、引入jdbc配置文件 [html] view plain copy
1.3、jdbc.properties的配置如下 [html] view plain copyjdbc_driverClassName=com.mysql.jdbc.Driver jdbc_url=jdbc:mysql://localhost/testdb?useUnicode=true&characterEncoding=utf8 jdbc_username=root jdbc_password=123456 1.4、在spring-mybatis.xml中引用jdbc中的配置[html] view plain copy
${jdbc_driverClassName}
${jdbc_url}
${jdbc_username}
${jdbc_password}
20
1
60000
20
3
true
180
clientEncoding=UTF-8
1.5、在java类中引用jdbc.properties中的配置[html] view plain copyimport org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Configuration; @Configuration public class JdbcConfig{ @Value("${jdbc_url}") public String jdbcUrl; //这里变量不能定义成static @Value("${jdbc_username}") public String username; @Value("${jdbc_password}") public String password; } 1.6、在controller中调用 [html] view plain copy@RequestMapping("/service/**") @Controller public class JdbcController{ @Autowired private JdbcConfig Config; //引用统一的参数配置类 @Value("${jdbc_url}") private String jdbcUrl; //直接在Controller引用 @RequestMapping(value={"/test"}) public ModelMap test(ModelMap modelMap) { modelMap.put("jdbcUrl", Config.jdbcUrl); return modelMap; } @RequestMapping(value={"/test2"}) public ModelMap test2(ModelMap modelMap) { modelMap.put("jdbcUrl", this.jdbcUrl); return modelMap; } } 1.7、测试在ie中输入http://localhost:8080/testWeb/service/test 或http://localhost:8080/testWeb/service/test2 返回如下结果:[java] view plain copy{ jdbcUrl:"jdbc:mysql://localhost/testdb?useUnicode=true&characterEncoding=utf8" } 注:通过context:property-placeholde加载多个配置文件 只需在第1.2步中将多个配置文件以逗号分隔即可 [html] view plain copy
2、通过util:properties实现配置文件加载 2.1、在spring.xml中加入util相关引用[html] view plain copy
2.2、 引入config配置文件 [html] view plain copy
2.3、config.properties的配置如下 [html] view plain copygnss.server.url=http://127.0.0.1:8080/gnss/services/data-world/rest 2.4、在java类中引用config中的配置 [html] view plain copyimport org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; @Component public class Config { @Value("#{settings['gnss.server.url']}") public String GNSS_SERVER_URL; } 2.5、在controller中调用[html] view plain copy@RequestMapping("/service2/**") @Controller public class ConfigController{ @Autowired private Config Config; //引用统一的参数配置类 @RequestMapping(value={"/test"}) public ModelMap test(ModelMap modelMap) { modelMap.put("gnss.service.url",Config.GNSS_SERVER_URL); return modelMap; } } 2.6、测试在ie中输入http://localhost:8080/testWeb/service2/test返回如下结果:[html] view plain copy{ "gnss.service.url":"http://127.0.0.1:8080/gnss/services/data-world/rest" } 3.直接在Java类中通过注解实现配置文件加载3.1、在java类中引入配置文件[java] view plain copyimport org.springframework.beans.factory.annotation.Value; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.PropertySource; @Configuration @PropertySource(value="classpath:config.properties") public class Config { @Value("${gnss.server.url}") public String GNSS_SERVER_URL; @Value("${gnss.server.url}") public String jdbcUrl; } 3.2、在controller中调用[java] view plain copy@RequestMapping("/service2/**") @Controller public class ConfigController{ @Autowired private Config Config; //引用统一的参数配置类 @RequestMapping(value={"/test"}) public ModelMap test(ModelMap modelMap) { modelMap.put("gnss.service.url", Config.GNSS_SERVER_URL); return modelMap; } }3.3、测试在ie中输入http://localhost:8080/testWeb/service2/test返回如下结果:[java] view plain copy{ "gnss.service.url":"http://127.0.0.1:8080/gnss/services/data-world/rest" } 最后附上spring.xml的完整配置:[html] view plain copy
个人分类: java web

  

转载地址:http://qhpta.baihongyu.com/

你可能感兴趣的文章
《社交网站界面设计(原书第2版)》——2.10 自我反省式的出错信息
查看>>
【vue】webpack打包vue项目并且运行在Tomcat里面
查看>>
颠覆传统下载体验 QNAP迅雷系列NAS重磅登场
查看>>
物联网:从源头为生产环境安全把关
查看>>
英巴卡迪诺新年战略:支持Linux提供中文手册
查看>>
梭子鱼任命James Forbes-May为亚太区销售副总裁
查看>>
关于“大数据”的15条干货思考
查看>>
Wind River Helix系统及物联网解决方案 简化企业IOT部署
查看>>
《VMware Virtual SAN权威指南》一第1章 VSAN概述
查看>>
大数据落地决胜的关键——百分点BASIC模型
查看>>
全闪存存储时代 NVMe到底是什么?
查看>>
《数学建模:基于R》——2.2 方差分析
查看>>
大数据的发展,伴随的将是软件工程师的渐退,算法工程师的崛起
查看>>
明明是全闪存阵列,为何存储性能仍然不够快
查看>>
Cloud Foundry 登录 Azure,一键快速部署 PaaS
查看>>
Firefox 44.0将在Linux上启用H.264支持:GTK3仍缺席
查看>>
如何检测出定制服务器中预装的恶意软件?
查看>>
System x迈向更多领域 国内超算步入全面发展时代
查看>>
爱立信思科结盟背后:几家欢喜几家愁
查看>>
Linux入门时必学文件处理个命令
查看>>