spring表达式语言

使用文本表达式
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<!--创建员工的对象-->
<bean id="emp" class="com.aaa.spring.entity.Emp">
<property name="empno" value="#{7369}"></property>
<property name="ename" value="#{'张三'}"></property>
<property name="age" value="#{10E+3}"></property>
</bean>
</beans>
属性访问的表达式
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<!--创建部门对象-->
<bean id="dept" class="com.aaa.spring.entity.Dept">
<property name="deptno" value="10"></property>
<property name="dname" value="销售部"></property>
<property name="loc" value="郑州"></property>
</bean>
<!--创建员工的对象-->
<bean id="emp" class="com.aaa.spring.entity.Emp">
<property name="empno" value="#{7369}"></property>
<property name="ename" value="#{'张三'}"></property>
<property name="age" value="#{10E+3}"></property>
<!--通过表达式语言访问别的对象的属性-->
<property name="dname" value="#{dept.dname}"></property>
</bean>
</beans>
方法和常量访问的表达式
安全导航表达式
在表达式中操作集合
 

 

posted on 2019-05-25 16:07  不酷也要写代码  阅读(253)  评论(0编辑  收藏  举报

导航