详解SpringMVC加载配置Properties文件的几种方式

 更新时间:2017年02月25日 15:03:54   作者:webin  
这篇文章主要介绍了详解SpringMVC加载配置Properties文件的几种方式,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。

Java技术迷

最近开发的项目使用了SpringMVC的框架,用下来感觉SpringMVC的代码实现的非常优雅,功能也非常强大,

网上介绍Controller参数绑定、URL映射的文章都很多了,写这篇博客主要总结一下SpringMVC加载配置Properties文件的几种方式

1.通过context:property-placeholde实现配置文件加载

1.1、在spring.xml中加入context相关引用

1
2
3
4
5
6
7
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:context="http://www.springframework.org/schema/context"
 xsi:schemaLocation="http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
   http://www.springframework.org/schema/context
   http://www.springframework.org/schema/context/spring-context.xsd">

 1.2、引入jdbc配置文件        

1
<context:property-placeholder location="classpath:jdbc.properties"/>

1.3、jdbc.properties的配置如下

1
2
3
4
jdbc_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中的配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init"
  destroy-method="close" >
  <property name="driverClassName">
   <value>${jdbc_driverClassName}</value>
  </property>
  <property name="url">
   <value>${jdbc_url}</value>
  </property>
  <property name="username">
   <value>${jdbc_username}</value>
  </property>
  <property name="password">
   <value>${jdbc_password}</value>
  </property>
  <!-- 连接池最大使用连接数 -->
  <property name="maxActive">
   <value>20</value>
  </property>
  <!-- 初始化连接大小 -->
  <property name="initialSize">
   <value>1</value>
  </property>
  <!-- 获取连接最大等待时间 -->
  <property name="maxWait">
   <value>60000</value>
  </property>
  <!-- 连接池最大空闲 -->
  <property name="maxIdle">
   <value>20</value>
  </property>
  <!-- 连接池最小空闲 -->
  <property name="minIdle">
   <value>3</value>
  </property>
  <!-- 自动清除无用连接 -->
  <property name="removeAbandoned">
   <value>true</value>
  </property>
  <!-- 清除无用连接的等待时间 -->
  <property name="removeAbandonedTimeout">
   <value>180</value>
  </property>
  <!-- 连接属性 -->
  <property name="connectionProperties">
   <value>clientEncoding=UTF-8</value>
  </property>
 </bean>

1.5、在Java类中引用jdbc.properties中的配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import 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中调用

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@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 

返回如下结果:

1
2
3
  jdbcUrl:"jdbc:mysql://localhost/testdb?useUnicode=true&characterEncoding=utf8"
}

注:通过context:property-placeholde加载多个配置文件

 只需在第1.2步中将多个配置文件以逗号分隔即可

复制代码 代码如下:

<context:property-placeholder location="classpath:jdbc.properties,classpath:XXX.properties"/> 

2、通过util:properties实现配置文件加载

2.1、在spring.xml中加入util相关引用

1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:context="http://www.springframework.org/schema/context"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:util="http://www.springframework.org/schema/util"
 xsi:schemaLocation="http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
   http://www.springframework.org/schema/context
   http://www.springframework.org/schema/context/spring-context.xsd
   http://www.springframework.org/schema/util
   http://www.springframework.org/schema/util/spring-util-4.0.xsd">

2.2、 引入config配置文件 

1
<util:properties id="settings" location="classpath:config.properties"/>

2.3、config.properties的配置如下

1
gnss.server.url=http://127.0.0.1:8080/gnss/services/data-world/rest

2.4、在java类中引用config中的配置  

1
2
3
4
5
6
7
8
9
import 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中调用

1
2
3
4
5
6
7
8
9
10
11
12
13
@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

返回如下结果:

1
2
3
{
  "gnss.service.url":"http://127.0.0.1:8080/gnss/services/data-world/rest"
}

3.直接在Java类中通过注解实现配置文件加载

3.1、在java类中引入配置文件

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import 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中调用
@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

返回如下结果:

1
2
3
{
  "gnss.service.url":"http://127.0.0.1:8080/gnss/services/data-world/rest"
 }

最后附上spring.xml的完整配置:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:context="http://www.springframework.org/schema/context"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:util="http://www.springframework.org/schema/util"
 xsi:schemaLocation="http://www.springframework.org/schema/beans
   http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
   http://www.springframework.org/schema/context
   http://www.springframework.org/schema/context/spring-context.xsd
   http://www.springframework.org/schema/util
   http://www.springframework.org/schema/util/spring-util-4.0.xsd">
  
  <!-- 引入jdbc配置文件 -->
  <context:property-placeholder location="classpath:jdbc.properties"/>
  
   <!-- 引入多配置文件 -->
    <context:property-placeholder location="classpath:jdbc.properties,classpath:XXX.properties"/>
   <!-- 通过util引入config配置文件 -->
   <!-- <util:properties id="settings" location="classpath:config.properties" /> -->
   <!-- 扫描文件(自动将servicec层注入) --> 
   <context:component-scan base-package="修改成你的Config类所在的package"/></beans>

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

蓄力AI

微信公众号搜索 “ 脚本之家 ” ,选择关注

程序猿的那些事、送书等活动等着你

原文链接:http://blog.csdn.net/swebin/article/details/57074660

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请将相关资料发送至 reterry123@163.com 进行投诉反馈,一经查实,立即处理!

相关文章

  • Java基于装饰者模式实现的图片工具类实例【附demo源码下载】

    Java基于装饰者模式实现的图片工具类实例【附demo源码下载】

    这篇文章主要介绍了Java基于装饰者模式实现的图片工具类,结合完整实例形式分析了装饰者模式实现图片的判断、水印、缩放、复制等功能,并附带demo源码供读者下载参考,需要的朋友可以参考下
    2017-09-09
  • java 序列化对象 serializable 读写数据的实例

    java 序列化对象 serializable 读写数据的实例

    java 序列化对象 serializable 读写数据的实例,需要的朋友可以参考一下
    2013-03-03
  • java开发validate方法中校验工具类详解

    java开发validate方法中校验工具类详解

    这篇文章主要为大家介绍了java开发validate方法中校验工具类详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-09-09
  • Java @GlobalLock注解详细分析讲解

    Java @GlobalLock注解详细分析讲解

    这篇文章主要介绍了Java @GlobalLock注解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧
    2022-11-11
  • 基于Spring BeanUtils的copyProperties方法使用及注意事项

    基于Spring BeanUtils的copyProperties方法使用及注意事项

    这篇文章主要介绍了基于Spring BeanUtils的copyProperties方法使用及注意事项,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2021-06-06
  • 使用maven自定义插件开发

    使用maven自定义插件开发

    这篇文章主要介绍了使用maven自定义插件开发,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2022-06-06
  • Java解释器的运行过程介绍

    Java解释器的运行过程介绍

    今天小编就为大家分享一篇关于Java解释器的运行过程介绍,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧
    2019-04-04
  • 一文探究ArrayBlockQueue函数及应用场景

    一文探究ArrayBlockQueue函数及应用场景

    这篇文章主要为大家介绍了一文探究ArrayBlockQueue函数及应用场景,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-03-03
  • Spring中@Value读取properties作为map或list的操作

    Spring中@Value读取properties作为map或list的操作

    这篇文章主要介绍了Spring中@Value读取properties作为map或list的操作,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教
    2021-07-07
  • Java实现单向链表反转

    Java实现单向链表反转

    这篇文章主要为大家详细介绍了Java实现单向链表反转,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-03-03

最新评论