When you use the Spring framework @Transactional annotation in your service layer you might want to see what is happening in your code related to database transaction. You want to see when a transaction is started, when it is committed or rollbacked.
To activate the log for transactional message you can add the following configurations in your application properties file. For example when using the JpaTransactionManager you can set the log level to DEBUG.
Using Spring Expression Language (SpEL) we can filter a collection based on some criteria. We can also create a projection of a collection by collecting only a particular property from the collection objects.
Now you know that you have two good features of SpEL that are really powerful to use when working with collection objects manipulation. But you are wondering how to combine both of these filters and projections in one expression. Can you do this in Spring EL? The answer is yes! You can combine them both in one expression. Let’s see an example below.
We are going to use the same configuration used in the previous example:
In the configuration above, when we define the library bean we set its bookTitles property using the filtering and projection operator. First we take only books that have more than 250 pages, and then we create the projection that contains only the book title. So this expression give us all the book’s title of a book that has more than 250 pages.
To make the example complete here again the definition of the Book and the Library class.
package org.kodejava.spring.core.el;
public class Book {
private Long id;
private String title;
private String author;
private String type;
private int pages;
// Getters & Setters
}
package org.kodejava.spring.core.el;
import java.util.List;
public class Library {
private List<Book> books;
private List<String> bookTitles;
// Getters & Setters
}
The main class the run the configuration file:
package org.kodejava.spring.core.el;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class SpELFilterProjectionExample {
public static void main(String[] args) {
try (ClassPathXmlApplicationContext context =
new ClassPathXmlApplicationContext("spel-filter-projection.xml")) {
Library library = context.getBean("library", Library.class);
for (String title : library.getBookTitles()) {
System.out.println("title = " + title);
}
}
}
}
The result of the code snippet:
title = Essential C# 4.0
title = User Stories Applied
title = Einstein
In this example you will learn how to create a projection of a collection object. Using projection we can create a new collection with only a specific property from the original collection.
As an example, instead of returning a collection of Book objects we would like only to have the titles of the books. To do this we can use the Spring EL projection operator. The symbol use for this operator is ![].
Let’s begin by creating the Spring configuration file:
Here are the definition of the Book and Library class. The getters and setters methods were removed for simplicity of the snippet.
package org.kodejava.spring.core.el;
public class Book {
private Long id;
private String title;
private String author;
private String type;
private int pages;
// Getters & Setters
}
package org.kodejava.spring.core.el;
import java.util.List;
public class Library {
private List<Book> books;
private List<String> bookTitles;
// Getters & Setters
}
Now, let’s talk about the Spring configuration above. The configuration was start by creating a collection of Books using the <util:elements>. The part that use the projection operator is this part of the configuration:
The bean element above create a library bean of type org.kodejava.spring.core.el.Library. We assign the bean’s bookTitles property with values that are a projection of the books collection where we take only the title of the books. ![projectionExpression] is the syntax of the projection operator.
The code snippet below will demonstrate and run our configuration file and print out the result:
package org.kodejava.spring.core.el;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class SpELProjectionExample {
public static void main(String[] args) {
try (ClassPathXmlApplicationContext context =
new ClassPathXmlApplicationContext("spel-projection.xml")) {
Library library = context.getBean("library", Library.class);
for (String title : library.getBookTitles()) {
System.out.println("title = " + title);
}
}
}
}
And here are the result:
title = Essential C# 4.0
title = User Stories Applied
title = Learning Android
title = The Ruby Programming Language
title = Einstein
In previous examples you have seen that we use the square-braces [] operator to select items from collection. In this post you will learn how to filter members of a collection with a certain criteria using the Spring EL. To do this Spring EL give you another special operator, the filter operator which can be typed like .?[], you can define the filter criteria inside the braces.
Beside the filter operator .?[] there are also operator that can select the first and the last matching items from collection. You can use the .^[] for selecting the first match and the .$[] operator to select the last match items from collection respectively.
As an example we will demonstrate here that we want to find a collection of books that have pages more than 250 and assign it to Library bean’s books properties. So let’s begin by defining a class called Book and Library which will have the following properties:
package org.kodejava.spring.core.el;
public class Book {
private Long id;
private String title;
private String author;
private String type;
private int pages;
// Getters & Setters
@Override
public String toString() {
return "Book{" +
"title='" + title + '\'' +
", author='" + author + '\'' +
", pages=" + pages +
'}';
}
}
package org.kodejava.spring.core.el;
import java.util.List;
public class Library {
private List<Book> books;
public List<Book> getBooks() {
return books;
}
public void setBooks(List<Book> books) {
this.books = books;
}
}
After creating the Book and the Library class let’s now create the Spring configuration file for our demo. We will create a file and call it as spel-filter-collection.xml with the following lines of configuration in it.
The first thing that you can see in the configuration above is the <util-list> where we create a list of Book beans. Next we have three beans definition of the type Library where the books property was assigned with a collection of beans selected from the books list.
The lib1 will contains books that have pages more than 250. The lib2 will contains the first book found to have more than 250 pages while the lib3 will contains the last book found to have more than 250 pages.
Below is the code that will run our configuration file and the example output it will produce.
package org.kodejava.spring.core.el;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class SpELFilterCollection {
public static void main(String[] args) {
try (ClassPathXmlApplicationContext context =
new ClassPathXmlApplicationContext("spel-filter-collection.xml")) {
System.out.println("Library 1");
Library lib1 = (Library) context.getBean("lib1");
for (Book book : lib1.getBooks()) {
System.out.println(" Book = " + book);
}
System.out.println("Library 2");
Library lib2 = (Library) context.getBean("lib2");
for (Book book : lib2.getBooks()) {
System.out.println(" Book = " + book);
}
System.out.println("Library 3");
Library lib3 = (Library) context.getBean("lib3");
for (Book book : lib3.getBooks()) {
System.out.println(" Book = " + book);
}
}
}
}
Library 1
Book = Book{title='Essential C# 4.0', author='Michaelis', pages=450}
Book = Book{title='User Stories Applied', author='Mike Cohen', pages=268}
Book = Book{title='Einstein', author='Walter Isaacson', pages=1000}
Library 2
Book = Book{title='Essential C# 4.0', author='Michaelis', pages=450}
Library 3
Book = Book{title='Einstein', author='Walter Isaacson', pages=1000}
Previously you have seen that we can load properties file and read a value from it in this example: How do I read a value from properties file using Spring EL?. In this example you will learn how to read a special properties available to Spring EL. These properties include the systemEnvironment and systemProperties.
The systemEnvironment property contains all the environment variables on the machine where the program is running. Meanwhile, the systemProperties contains all the properties that we set in Java when the application started, using the -D argument. Let’s see how to access both of these properties in the following Spring configuration file:
In the configuration above we have two beans of Program. We set the logPath properties using a different property source. In the program1 bean we use systemProperties['APP.LOG_PATH']. Using this method the value will be pass to our program using the -DAPP.LOG_PATH=F:\Temp when we are executing the program. While the program2 bean’s logPath is read from TEMP directory property available through the systemEnvironment variables.
To make the Spring configuration works you’ll need the Program class. So here is the class definition.
package org.kodejava.spring.core.el;
public class Program {
private String logPath;
public Program() {
}
public String getLogPath() {
return logPath;
}
public void setLogPath(String logPath) {
this.logPath = logPath;
}
}
Finally, let’s create a simple class to execute the Spring configuration file above and see the result of the code.
package org.kodejava.spring.core.el;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class SpELEnvironment {
public static void main(String[] args) {
try (ClassPathXmlApplicationContext context =
new ClassPathXmlApplicationContext("spel-environment.xml")) {
Program program1 = (Program) context.getBean("program1");
System.out.println("program.getLogPath() = " + program1.getLogPath());
Program program2 = (Program) context.getBean("program2");
System.out.println("program.getLogPath() = " + program2.getLogPath());
}
}
}
In the previous two examples you have seen how to access member of a collection and access a map element using the square-braces [] operator in Spring EL. In this example you will see how to use the [] operator to read a value from a properties file or java.util.Properties.
Let’s say we have a database properties file called database.properties with the following entries in it:
First, let’s create the spring configuration file. In this configuration we will use the <util:properties> to load the properties file into Spring. And then we will use Spring EL to access the value of these properties and assign it to some bean’s properties.
To read a value from properties file what you do is the same as how we access an element of a map object. We pass the name of the properties as the key in the Spring EL.
The MyDataSource class is an imaginary data source object. It has some properties such as the driverClassName, url, username and password. It’s a common parameter you use to connect to a database using a JDBC driver. For simplicity the getters and setters we removed from the class.
As always, to run the Spring configuration above we will need to create a main class that load and execute the application context. This class will obtain the dataSource bean from the application context and print out its properties whose values are read from a properties file called database.properties.
In the previous example, How do I access collections members using Spring EL?, you have seen how to access a member of a collection using Spring EL square-braces [] operator. In this post you will learn how to use the same operator to access an element of a Map object.
For demonstration, we will use the same Book class in the previous example to create the bean. The class without the corresponding getters and setters is as follows:
package org.kodejava.spring.core.el;
public class Book {
private Long id;
private String title;
private String author;
private String type;
// Getters & Setters
}
Next, let’s create the spring configuration file. In this configuration file we create a map using the <util:map> with the map id of books and add some key-value pair entries in the map.
After defining the map, you can see how we access an element of the map. We use the square-braces operator [], we use the same operator as we are accessing a collection member. But instead of passing the index to the operator we pass the key of the map element that we are going to read.
In this post you will see another powerful examples of Spring EL. We are going to demonstrate how to use Spring EL to access collection members.
By using Spring EL you can select a single reference member of a collection. You can also select members of collection based on the values of their properties. Another thing you can do is extract properties out of the collection members to create another collection object.
To demonstrate this we are going to create a simple bean / pojo as our collection object. We will create a Book class with some properties (id, title, author).
package org.kodejava.spring.core.el;
public class Book {
private Long id;
private String title;
private String author;
private String type;
// Getters & Setters
}
Next, we need to create the spring configuration file. In this configuration we will create a collection of books using the <util:list> element. And we also create a bean with its properties is obtained from one of the collection objects.
In the configuration above you have seen how we set the title and author of the book bean. We use the square-braces operator ([]) to access collection’s member by their index. It’s look like this:
Which can be read as: please give me the collection object at index number 3 and take the value of its title and author to be assigned to the book bean. And as you might already know that a collection object in Java is always zero-based index. So this will give us the book with title “The Ruby Programming Language”.
And finally let’s create an example class that run our spring configuration above. It’s simply load the spell-collection.xml configuration we create above. Get a bean from the loaded ApplicationContext and print out its properties, title and author properties.
package org.kodejava.spring.core.el;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class SpELCollectionExample {
public static void main(String[] args) {
try (ClassPathXmlApplicationContext context =
new ClassPathXmlApplicationContext("spel-collection.xml")) {
Book book = (Book) context.getBean("book");
System.out.println("book.getTitle() = " + book.getTitle());
System.out.println("book.getAuthor() = " + book.getAuthor());
}
}
}
Executing the code above will give you the following result:
book.getTitle() = The Ruby Programming Language
book.getAuthor() = David Flanagan & Yukihiro Matsumoto
In this Spring Expression Language example we are going to learn how to use regular expression or regex to check if a text matches a certain pattern. Spring EL support regular expression using the matches operator.
The matches operator will check if the value has a pattern defined by the regex string, and it returns the evaluation result as a boolean value true if the text matches the regex or false if otherwise.
For example, we can use the matches operator to check if the given email address is a valid email address. As can be seen in the following example:
This configuration will evaluate the user.email property to check if the email pattern matches with the given regular expression. If matches then the emailValid property will be set to true otherwise it will be false.
Let’s see the complete example. Here are the spring configuration file, the User bean and a simple class for running the configuration file.
In this example you will learn how to use ternary operator in Spring Expression Language. The ternary operator will evaluate a Spring EL to one value if a condition is true and to another value if the condition is false. Ternary operator is written using the ?: symbols, just as what you do in Java. The test condition is placed on the left side of the ? symbol while the evaluating expression is placed between the : symbol.
As an example, let’s see how to use the ternary operator in a spring configuration file.
In the configuration you’ll see that there are two ways to use the operator. On the book2 bean we use the common usage of the operator. We check if the book1.type is not equal to null, if this is true then we take the book1.type as the value otherwise we just assign the type to 'Novel'.
There are some duplications in the first example. As you can see, we call the boo1.type twice in that line of code. Actually the Spring EL version can give you a shorter one. Instead of doing like before you can just use the ternary operator like what we use in the book3 bean. So we can type book1.type ?: 'Novel'. This will give us the same result.
Having the configuration created you will also need the Book class. So here is the Book class definition.
package org.kodejava.spring.core.el;
public class Book {
private String type;
public Book() {
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
}
Finally, let’s now create a class to run the spring configuration. This class basically just load the spring configuration file spel-ternary.xml and get some beans, the Book bean from the application context and print out the value of its type property.
package org.kodejava.spring.core.el;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class SpELTernaryOperatorExample {
public static void main(String[] args) {
try (ClassPathXmlApplicationContext context =
new ClassPathXmlApplicationContext("spel-ternary.xml")) {
Book book1 = (Book) context.getBean("book1");
Book book2 = (Book) context.getBean("book2");
Book book3 = (Book) context.getBean("book3");
System.out.println("book1.getType() = " + book1.getType());
System.out.println("book2.getType() = " + book2.getType());
System.out.println("book3.getType() = " + book3.getType());
}
}
}
And here are the execution output that you’ll get.