Spring EL表达式和资源调用
Spring EL表达式
Spring EL-Spring表达式语言,支持在xml和注解中使用表达式,类似于在jsp的EL表达式语言。
Spring 开发中经常涉及调用各种资源的情况,包含普通文件、网址、配置文件、系统环境变量等,我们可以使用Spring的表达式语言实现资源的注入。
Spring主要在注解@Value的参数中使用表达式语言。
- 注入普通字符
- 注入操作系统属性
- 注入表达式运算结果
- 注入其他Bean的属性
- 注入文件内容
- 注入网址内容
- 注入属性文件
示例
- 在类路径下新建一个text.txt文件,内容随意,在类路径下新建一个test.propertes文件,内容如下:
book.author=xxx
book.name= spring boot
- 编写一个需要注入的Bean
@Service
public class DemoService {
@Value("其他类中的属性") // 此处为注入普通字符串
private String another;
public String getAnother(){
return another;
}
public void setAnother(String anther){
this.another = anther;
}
}
- 配置类
@Configuration
@ComponentScan("xxx.xx.xx")
@PropertySource("classpath:test.properties")
public class ELConfig {
@Value("I Love You !") // 1
private String normal;
@Value("#{systemProperties['os.name']}") // 2
private String osName;
@Value("#{T(java.lang.Math).random() * 100.0}") // 3
private double randomNumber;
@Value("#{demoService.another}") // 4
private String fromAnother;
@Value("classpath:test.txt") // 5
private Resource testFile;
@Value("http://www.baidu.com") // 6
private Resource testUrl;
@Value("${book.name}")
private String bookName;
@Bean // 7
public static PropertySourcesPlaceholderConfigurer propertyConfigure(){
return new PropertySourcesPlaceholderConfigurer();
}
...
setter and getter function
...
}
代码解释
注入普通字符串
注入操作系统属性
注入表达式结果
注入其他Bean属性
注入文件资源,文件资源可以是classpath路径下的也可以是系统文件目录下的
注入网址资源
注入配置文件中的资源,配置文件使用@PropertySource注解在类上标注
注入配置件需要使用@PropertySource指定文件地址,若使用@Value注入,则要配置一个PropertySourcesPlaceholderConfigurer的Bean,@Value("${book.name}")使用的是"$"而不是"#"
Profile
Profile为不同环境下使用不同的配置提供了支持(开发环境和生成环境)
- 通过设定Environment的ActiveProfiles类设定当前context需要使用的配置。在开发中使用@Profile注解类或者方法,达到不同情况下选择实例化不同的Bean。
- 通过设定JVM的spring.profiles.active参数来设计配置环境。
- Web项目设置在Servlet的context parameter中。
<-- Servlet 2.5及以下 -->
<serlvet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>spring.profiles.active</param-name>
<param-value>prod</param-value>
</init-param>
</servlet>
// servlet 3.0 以上
public class WebInit implements WebApplicationInitializer {
public void onStartup(ServletContext container) throws ServletException {
container.setInitParameter("spring.profiles.default", "dev");
}
}
示例
- 示例Bean
public class DemoBean {
private String content;
public DemoBean(String content){
this.content = content;
}
public String getContent(){
return content;
}
}
- Profile配置
@Configuration
public class ProfileConfig {
@Bean
@Profile("dev") // 1
public DemoBean devDemoBean(){
return new DemoBean("from development profile");
}
@Bean
@Profile("prod") // 2
public DemoBean prodDemoBean() {
return new DemoBean("from production profile");
}
}
代码解释
profile为dev时示例化devDemoBean
profile为prod时实例化为prodDemoBean
运行
public class Main{
public static void main(String[] args){
AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext();
context.getEnvironment().setActiveProfiles("prod"); // 1
context.register(ProfileConfig.class); // 2
context.refresh(); // 3
DemoBean demoBean = context.getBean(DemoBean.class);
System.out.println(demoBean.getContext());
context.close();
}
}
说明
- 先将活动的Profile设置为prod
- 后置注册Bean配置类,不然会报Bean未定义的错误
- 刷新容器
Spring EL表达式和资源调用的更多相关文章
- java MVEL2/Spring EL表达式、直接调用、反射性能实测
import java.io.Serializable; import java.lang.reflect.Field; import java.util.HashMap; import java.u ...
- 把功能强大的Spring EL表达式应用在.net平台
Spring EL 表达式是什么? Spring3中引入了Spring表达式语言—SpringEL,SpEL是一种强大,简洁的装配Bean的方式,他可以通过运行期间执行的表达式将值装配到我们的属性或构 ...
- Spring 在 xml配置文件 或 annotation 注解中 运用Spring EL表达式
Spring EL 一:在Spring xml 配置文件中运用 Spring EL Spring EL 采用 #{Sp Expression Language} 即 #{spring表达式} ...
- 使用spring EL表达式+自定义切面封装缓存模块
需求是这样的,业务代码需要使用到缓存功能以减少数据库压力,使用redis来实现,并且需要生成缓存的key由方法的传参拼接而成(貌似也只能这样才能保证同样的select查询可以使用缓存),简单的方式就是 ...
- 解决spring el表达式不起作用
el表达式不起作用,如下图所示 现象: 在显示页面中加入: <%@ page isELIgnored="false" %>就OK了 参考:http://bbs.csdn ...
- spring EL表达式,null-safe表达式
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns:xsi="http://ww ...
- Spring整合Shiro并扩展使用EL表达式
Shiro是一个轻量级的权限控制框架,应用非常广泛.本文的重点是介绍Spring整合Shiro,并通过扩展使用Spring的EL表达式,使@RequiresRoles等支持动态的参数.对Shiro的介 ...
- Jsp内置对象及EL表达式的使用
一.JSP的内置对象(9个JSP内置对象) JSP的内置对象引用名称 对应的类型 request HttpServletRequest response HttpServletResponse ses ...
- EL表达式的语法介绍及九大隐含对象
一. 简介 > JSP表达式 <%= %> 用于向页面中输出一个对象. > 到JSP2.0时,在我们的页面中不允许出现 JSP表达式和 脚本片段. > 使用EL表达式来代 ...
随机推荐
- rman参数
rman 参数 RMAN> show all; 参数是存放在控制文件中的 改参数:(直接改) eg: CONFIGURE RETENTION POLICY TO REDUNDANCY 3 参数: ...
- Linxu基本指令
一.Linux权限的概念 Linux下有两种用户:普通用户和超级用户(). 普通用户:在linux下做有限的事情: 超级用户:可以在linux系统下做任何事情,不受限制. 普通用户的提示符是“$”,超 ...
- HDU-4221 Greedy? 贪心 从元素的相对位置开始考虑
题目链接:https://cn.vjudge.net/problem/HDU-4221 题意 给n个活动,每个活动需要一段时间C来完成,并且有一个截止时间D 当完成时间t大于截止时间完成时,会扣除t- ...
- POJ 3261 Milk Patterns(后缀数组+单调队列)
题意 找出出现k次的可重叠的最长子串的长度 题解 用后缀数组. 然后求出heigth数组. 跑单调队列就行了.找出每k个数中最小的数的最大值.就是个滑动窗口啊 (不知道为什么有人写二分,其实写啥都差不 ...
- HDU 1043 Eight (A*算法)
题目大意:裸的八数码问题,让你输出空格的一条合法移动路径 首先利用康托展开对排列编号,可以预处理出排列,就不必逆展开了 然后利用A*算法求解 A*算法是一种启发式搜索,具体实现要用到优先队列/堆,不同 ...
- 重载和const形参
1.int lookup(string p); 2.int lookup(const string p);//同1 3.int lookup(string *);//传入一个指针,指针指向string ...
- rescan-scsi-bus.sh linux扫盘 脚本
[root@ftp:/home/tools/shell] > yum install sg3_utils* Loaded plugins: fastestmirror Repository ba ...
- HDU 4069 数独
好久没做题了,建图搞了好久…… 然后,判是否有多解的时候会把原来的答案覆盖掉…… 这里没注意,弄了一下午…… 代码: #include <iostream> #include <cs ...
- HDU 4965 Fast Matrix Calculation 矩阵乘法 乘法结合律
一种奇葩的写法,纪念一下当时的RE. #include <iostream> #include <cstdio> #include <cstring> #inclu ...
- Qt之手动布局
简述 手动布局,可以实现和水平布局.垂直布局.网格布局等相同的效果,也可实现属于自己的自定义布局,当窗体缩放时,控件可以随之变化. 其对于坐标系的建立有严格要求,纯代码思维,使用复杂,不易维护,所以一 ...