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>
    方法和常量访问的表达式
    安全导航表达式
    在表达式中操作集合
     

  • 相关阅读:
    mkimage command not found
    Linux添加快捷启动方式 (Ubuntu Debian CentOS)
    CentOS下通过locale来设置字符集
    CentOS 安装中文输入法
    Centos 安装KScope1.6.2
    centos 配置NFS服务器
    Linux shell判断文件和文件夹是否存在
    数据库中Schema和Database有什么区别
    配置Tomcat使用https协议
    HTML font: 12px/1.5 Arial; 是什么意思
  • 原文地址:https://www.cnblogs.com/duguangming/p/10922737.html
Copyright © 2011-2022 走看看