这里就介绍一种简单的方式,一般SSM框架都差不多如下!
1.spring-mvc.xml中加入加载.properties的加载配置语句
- <!--配置读取classpath:*.properties-->
- <context:property-placeholder location="classpath:*.properties" file-encoding="UTF-8" ignore-unresolvable="true"/>
2 新建一个你需要加载的properties
- name = http://www.javar.cc
3 JAVA代码中需要表现的值,注解用上会方便点
- @Component
- public class Constant {
- @Value("${name}")
- private String name;
建议在Service中使用