• @Value("#{}")与@Value("${}")的区别


     原文:https://blog.csdn.net/u012925172/article/details/84926064

    @Value("#{}")   SpEL表达式
    @Value("#{}") 表示SpEl表达式通常用来获取bean的属性,或者调用bean的某个方法。当然还有可以表示常量

     1  @RestController
     2  @RequestMapping("/login")
     3  @Component
     4  public class LoginController {
     5    
     6         @Value("#{1}")
     7         private int number; //获取数字 1
     8         
     9         @Value("#{'Spring Expression Language'}") //获取字符串常量
    10         private String str;
    11         
    12         @Value("#{dataSource.url}") //获取bean的属性
    13         private String jdbcUrl;
    14         
    15         @Autowired
    16         private DataSourceTransactionManager transactionManager;
    17      
    18         @RequestMapping("login")
    19         public String login(String name,String password) throws FileNotFoundException{
    20             System.out.println(number);
    21             System.out.println(str);
    22             System.out.println(jdbcUrl);
    23             return "login";
    24         }
    25     }


     当bean通过@Value(#{""}) 获取其他bean的属性,或者调用其他bean的方法时,只要该bean (Beab_A)能够访问到被调用的bean(Beab_B),即要么Beab_A 和Beab_B在同一个容器中,或者Beab_B所在容器是Beab_A所在容器的父容器

    (拿我上面贴出来的代码为例在springMvc项目中,dataSource这个bean一般是在springContext.xml文件中申明的,而loginController这个bean一般是在springMvc.xml文件中申明的,

    虽然这两个bean loginController和dataSource不在一个容器,但是loginController所在容器继承了dataSource所在的容器,

    所以在loginController这个bean中通过@Value("#{dataSource.url}")能够获取到dataSource的url属性)。

     
    2 @Value("${}")

    通过@Value("${}") 可以获取对应属性文件中定义的属性值。假如我有一个sys.properties文件 里面规定了一组值: web.view.prefix =/WEB-INF/views/
    在springMvc.xml文件中引入下面的代码既即以在 该容器内通过@Value("${web.view.prefix}")获取这个字符串。

    需要指出的是,如果只在springMvc.xml引入下面代码,只能在springMvc.xml文件中扫描或者注册的bean中才能通过@Value("${web.view.prefix}")获取这个字符串,

    其他未在springMvc.xml扫描和定义的bean必须在相应的xml文件中引入下面代码才能使用@Value("${}”)表达式

     然后再controller文件中通过下面代码即可获取“”/WEB-INF/views/“”这个字符串

    <!-- 加载配置属性文件 -->
    <context:property-placeholder ignore-unresolvable="true" location="classpath:sys.properties" />

    @Value("${web.view.prefix}") private String prefix;


       


  • 相关阅读:
    中共中央办公厅的机构设置(局、室)
    清理winsxs文件夹(系统更新文件)的第三方工具
    通用的MIME类型:application/octet-stream
    “IIS7.5无法写入配置文件web.config”的解决方案
    刷新组策略的命令
    windows网络和共享中心“查看基本网络信息并设置连接”为“未知”的解决方案
    使 windows 无需输入开机密码自动进入系统
    windows server 2008 R2 的 FTP 防火墙的正确配置方法
    搜狗浏览器不能使用拖拽搜索的解决方案
    无法启动 Diagnostic Policy Service(服务错误 1079)的解决方案
  • 原文地址:https://www.cnblogs.com/But-you/p/10682186.html
Copyright © 2020-2023  润新知