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

  • 相关阅读:
    C&C++ recap
    将Rmarkdown文件转为pdf文件
    ChIP-seq Peak caller MACS index out of range问题解决
    R正则表达式的问题
    nodejs+cheerio爬虫测试
    jetty更换图标
    MyEclipse无法生成class文件
    JPA @OneToOne stackoverflow
    jquery-validate--使用由于疏忽导致的问题1(input失去焦点没有被验证,submit才验证)
    组合框
  • 原文地址:https://www.cnblogs.com/duguangming/p/10922737.html
Copyright © 2011-2022 走看看