Spring spel ternary operator example

Ternary operator syntax:

condition ? true : false

Spring SpEL Ternary Operator Example:

TernaryOperatorTest.java

import org.springframework.expression.ExpressionParser;
import org.springframework.expression.spel.standard.SpelExpressionParser;

/**
 * Spring SPEL Ternary Operator test example.
 * @author W3schools360
 */
public class TernaryOperatorTest {
	public static void main(String args[]){
		//Create a parser with default settings.
		ExpressionParser parser = new SpelExpressionParser(); 
		
		//Ternary operator expressions. 
		System.out.println(parser.parseExpression(
				"10 < 20? true: false").getValue());
	}
}

Output:

true

 
Download this example.