zoukankan      html  css  js  c++  java
  • 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>
    方法和常量访问的表达式
    安全导航表达式
    在表达式中操作集合
     

  • 相关阅读:
    hdu 1576 A/B(exgcd、乘法逆元+整数快速幂)
    CSS3带小图标垂直下拉菜单
    CSS3动画表单
    灰色3D按钮组合
    半透明菜单导航
    CSS3透明背景表单
    CSS3手风琴菜单 可同时折叠多个菜单
    jQuery图片下滑切换焦点图
    jQuery消息提示框插件Tipso
    jQuery自动轮播图片焦点图
  • 原文地址:https://www.cnblogs.com/duguangming/p/10922737.html
Copyright © 2011-2022 走看看