spring Controller 层注解获取 properties 里面的值

Posted 不忘初心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring Controller 层注解获取 properties 里面的值相关的知识,希望对你有一定的参考价值。

前言:最近在做一个项目,想要在 controller 层直接通过注解 @Value("")来获取 properties 里面配置的属性。

  这个其实和 springmvc、spring 两个容器相关。controller 是在 springmvc 容器中,所以需要看看 springmvc 的配置文件中是否有配置 properties 文件。

  经设置,即可在 controller 层使用 @Value 了。

    <!-- 加载配置文件,controller中需要使用@Value得到配置值 -->
    <context:property-placeholder location="classpath*:conf/system/*.properties"/>

 

  参考:http://www.cnblogs.com/hafiz/p/5875740.html

以上是关于spring Controller 层注解获取 properties 里面的值的主要内容,如果未能解决你的问题,请参考以下文章

spring的注解形式:@Repository@Service@Controller,

Spring 注解

Spring中@Component注解,@Controller注解详解(网摘)

Spring 常用注解大全

Spring框架三层架构(daoservice和controller)注解注入 实现简易登录功能

Spring常用注解用法总结