Knowledge Walls
J2EE Technologies Tutorial
Hyderabad, Andhra Pradesh, India
Spring Expression (SpEL) Arithmetic Operators Example
2953 Views
Hints 
Below is an example of "Spring Expression (SpEL) Arithmetic Operators Example"
Step.1 Start a Java Project with required jars 
  1. Open Eclipse
  2. Click on menu New -> Others
  3. In wizards type "Java Project" and Select "Java Project"
  4. Click Next
  5. Enter project name as "SpELArithmeticOperatorsExample", then click Next
  6. Goto Libraries tab, then click on Add External JARs, then select Spring's 21 Framework Jars and commons-logging-1.1.jar.
  7. Click Finish.
Step.2 Project Explorer Preview 
RunMyProgram.java
package com.springexample;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

public class RunMyProgram {
	public static void main(String[] args) {
		ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
			RelationalDataHolder relationalOperator = (RelationalDataHolder) context.getBean("relationalDataHolder");
			
			System.out.println("eqResult: "+relationalOperator.isEqResult());
			System.out.println("gtResult: "+relationalOperator.isGtResult());
			System.out.println("geResult: "+relationalOperator.isGeResult());
			System.out.println("ltResult: "+relationalOperator.isLtResult());
			System.out.println("leResult: "+relationalOperator.isLeResult());
	}
}
beans.xml
<?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-3.0.xsd">

	<bean id="relationalDataHolder" class="com.springexample.RelationalDataHolder">
		<property name="eqResult" value="#{23 eq 10}" />
		<property name="gtResult" value="#{23 gt 10}" />
		<property name="geResult" value="#{23 ge 10}" />
		<property name="ltResult" value="#{23 lt 10}" />
		<property name="leResult" value="#{23 le 10}" />
	</bean>
	
</beans>
RelationalDataHolder.java
package com.springexample;

public class RelationalDataHolder {
	private boolean eqResult;
	private boolean gtResult;
	private boolean geResult;
	private boolean ltResult;
	private boolean leResult;
	
	public boolean isEqResult() {
		return eqResult;
	}
	public void setEqResult(boolean eqResult) {
		this.eqResult = eqResult;
	}
	public boolean isGtResult() {
		return gtResult;
	}
	public void setGtResult(boolean gtResult) {
		this.gtResult = gtResult;
	}
	public boolean isGeResult() {
		return geResult;
	}
	public void setGeResult(boolean geResult) {
		this.geResult = geResult;
	}
	public boolean isLtResult() {
		return ltResult;
	}
	public void setLtResult(boolean ltResult) {
		this.ltResult = ltResult;
	}
	public boolean isLeResult() {
		return leResult;
	}
	public void setLeResult(boolean leResult) {
		this.leResult = leResult;
	}
}
Output 
eqResult: false
gtResult: true
geResult: true
ltResult: false
leResult: false
Download as Zip 
Link to download
SpELArithmeticOperatorsExample

Hints.
Click on File menu. then click "Download"
Best Lessons of "Spring 3.0 Examples"
Top lessons which are viewed more times.
  Copyright © 2014 Knowledge walls, All rights reserved
KnowledgeWalls
keep your tutorials and learnings with KnowledgeWalls. Don't lose your learnings hereafter. Save and revise it whenever required.
Click here for more details