The Spring Expression Language (SpEL for short) is a powerful expression language that supports querying and manipulating an object graph at runtime. The language syntax is similar to Unified EL but offers additional features, most notably method invocation and basic string templating functionality.

learn more… | top users | synonyms (1)

0
votes
1answer
20 views

Referencing Map Elements in SpEL - Spring FTP dynamic remote directory creation

I'm using outbound-channel-adapter of spring integration ftp <int-ftp:outbound-channel-adapter id="ftpOutAdapterAutoCreate" session-factory="ftpSessionFactory" channel="outChannel" ...
0
votes
1answer
32 views

Spring expression Language - Call getter

Suppose I have a class MyClass as follows. package com.classes.blabla; public class MyClass { String myVar; public setMyVar(String myVar) { this.myVar = myVar; } public String getMyVar() { ...
0
votes
0answers
14 views

how to check instanceof class in SpringEL

i am new to SpringEL and need some help in identifying the instance Of object. policyDetail object has list of insuredAndPrincipals. this list has InsuredPrincipalEntity objects. i am trying to ...
0
votes
1answer
28 views

Using a static variable value in Qualifier annotation

Is it possible to pass a static variable defined in a class as argument to @Qualifier annotation? I tried the below format and a few other variations, but nothing worked. ...
3
votes
2answers
71 views

How to replace a placeholder in a String with a SimpleDateFormat Pattern

In a given String like this ".../uploads/${customer}/${dateTime('yyyyMMdd')}/report.pdf" I need to replace a customer and a yyyyMMdd timestamp. To replace the customer placeholder, I could use the ...
0
votes
1answer
69 views

How to pass a null variable into a Spring Expression in JSP

I am using the <spring:eval> tag in a JSP: <spring:eval expression="'today is ' + today" /> Where today is a java.util.Date. Everything works just fine, as long as the today variable is ...
0
votes
1answer
57 views

check an environment variable for null and get a file in spring el

In our prod environment we supply confDir parameter from server.xml in tomcat to get .properties file, but in dev and test environments we use the properties file in classpath. Like this ...
0
votes
0answers
33 views

Spring EL: check whether a variable is null inside value attribute

I have these two util:properties tags in my dataContext and to locate a properties file on file system. <util:properties id="props" location="classpath:jdbc.properties" local-override="false"/> ...
6
votes
2answers
90 views

Why in the below case @value(“${someProperty}”) is working while @value(“#{someProperty}”), is not working [duplicate]

I have the below spring configuration: <context:property-placeholder location="classpath:commonSql.properties" /> Now in my class, when I use @value("#{someproperty}") it did not work. Then, ...
0
votes
2answers
41 views

file outbound channel and remote directory expression

I'm try to combine both a SpEL and a bean value to generate a directory-expression="${backup.folder}'+T(java.io.File).separator+new java.text.SimpleDateFormat('yyyyMMdd').format(new ...
0
votes
1answer
33 views

SpEL using functions

I add to my xml next bean: <bean id="PracticeFactory" class="WordsLearning.PracticeFactory"> <constructor-arg value="#{teacher.getPracticeType()}"/> <constructor-arg ...
0
votes
0answers
43 views

Spring SPEL, method not found in base class

I am using a SPEL expressing in a Apache Camel route. The route is as follows: .spel("#{request.body.get(T(myType).Const) .setIfAbsent(T(java.util.UUID).randomUUID()).get()}") In the ...
0
votes
2answers
157 views

Spring Expression Language equivalent for \r, \n, \t etc

I am using Spring Integration. I get a string (payload) like below: <Element> <Sub-Element>5</Sub-Element> </Element> I need to test if above string starts with ...
3
votes
1answer
47 views

Spring EL: Safe navigation with map access

I'm using Spring EL to pull values out of a rather complex set of nested maps and lists. I want to be able to use an expression like [9]['firstSubKey']['secondSubKey'] except that ...
1
vote
2answers
124 views

Evaluating properties inside Spring Expression Lang (SpEL)

Our service has a process that is scheduled according to a properties file, reading the property refreshIntervalMillis. Its value is injected directly in a Quartz trigger with this configuration: ...
0
votes
2answers
75 views

Spring Security method rules: returned value contains a Collection

In Spring Security I want to secure a method incorporating returned values and using @PostAuthorize. I want to add a constraing that will not allow one user to access to resources they are not ...
0
votes
1answer
47 views

. character in bean name and use at SpEL

I have a simple spring context file as following: <bean id="acl.provider" class="com.provider.ProviderType" factory-method="getInstance"> <constructor-arg index="0" ...
0
votes
2answers
155 views

Spring PropertyPlaceholderConfigurer in Linux

Config in applicationContext.xml: <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="locations"> <list> ...
1
vote
1answer
211 views

FullAjaxExceptionhandler only catches javax.el.ELException or java.lang.Throwable

FullAjacExceptionHandler can only catch javax.el.ELException or java.lang.Throwable. Throwable also takes precedence over javax.el.ELException. I need to explicit catch a particular exception thrown ...
0
votes
0answers
118 views

Custom SpEL function for use in ThymeLeaf

ThymeLeaf newb question here: I would like to register a custom SpEL utility object to provide some custom formatting. The Spring EL documentation says that I should use ...
0
votes
1answer
76 views

@PreAuthorize: reference property in implementing class

I have service interface public interface CompoundService<T extends Compound> { T getById(final Long id); //... } and abstract implementation public abstract class ...
0
votes
1answer
103 views

Inject spring bean in custom el functions

i want to create a custom el functions to get in a fast way select options from dao. I'm using Spring and i want to inject spring bean dao in my custom el functions class. In el functions class i'm ...
0
votes
1answer
50 views

Is there a way to calculate property value by means of Spring?

I have a dataSource bean. I need to extract a boolean value from it: dataSource.getConnection().getMetaData().supportsStoredProcedures() and then use it inside my DAO to define behavior. The ...
0
votes
1answer
79 views

Spring @Cachable bean reference in key

I want to use the @Cachable annotation on one of my methods, but I have the problem, that the result depends on an attribute of a spring bean that is not part of the method signature. So I want ...
0
votes
1answer
82 views

spring expression read file content

How to use spring expression to read file content and put it into a string? I would like to do the following. For example, @Value("classpath:myquery.sql") File f; ...
0
votes
1answer
87 views

Spel Expressions | @CacheEvict | applicationContext

I am using caching annotations of Spring. I want to pass name of Cache [@CacheEvict(name="vendorCache")] from applicationContextfile or it can be configured in any other way. Now i have scenario in ...
1
vote
1answer
66 views

Typecasting in SpEL expresssion used in Spring Integration

I need to add a prefix to every message that goes out. I can do it using a method, but would like to just have the transformer handle it. The problem is the message needs to be prefixed with control ...
1
vote
2answers
573 views

Using @Value annotation with static final variable in Spring Framework

I want to make the Request Mappings in my Spring application dynamic. So that my url can not be understandable. And I can show anything meaningless to the user and still mapping purpose will be ...
1
vote
1answer
49 views

How to authenticate against a collection of domain objects in Spring Expression Language SpEL

My principle is an instance of 'foo' that has a collection of 'bars'. Each 'bar' has an id that I want to match with the 'id' passed as the resource requested. Can I do something like the following ...
0
votes
1answer
256 views

SPEL error “occurred whilst attempting to access the property through getter”

Really, it says "whilst". I got this error in a test I wrote to exercise a Spring Batch ItemReader, the reader's query needs a parameter supplied by a spring-managed bean, and getting the field off ...
7
votes
3answers
311 views

How to do rule-based authorization with Spring Security in Grails?

Spring Security is great for doing role-based authorization, but it seems to fall short when it comes to rule-based authorization. Sure, there are ways to do it via SpEL, but going that route seems to ...
1
vote
1answer
65 views

Spring expression 'literal' in XML config file

I have a simple class something like: public class ValueProvider { public void setExpression(String expression) { this.expression = expression; } public String getValue() { ...
0
votes
1answer
72 views

Is it possible to use Spring EL when referencing a bean in constructor-arg?

<bean id="foo" class="com.bla.Foo" /> <bean id="bar" class="com.bla.Bar" /> <bean id="channel" class="com.bla.Channel"> <constructor-arg ref="#{(config.isFooEnabled()) ? foo : ...
0
votes
0answers
54 views

Spring Expression Evaluator plugin

I like Spring Expression Language. There would be so great to have some Eclipse plugin, which evaluates an expression based on the classpath if it is possible. For example the following expression ...
1
vote
1answer
243 views

How to nest static method invocations in Spring Expression Language in a Spring config file?

I want to inject a guava Predicate into my bean, which should be an equalto inside a not. I tried this: <bean id="bla" class="something"> <property name="indexPredicate" ...
1
vote
1answer
162 views

Access session bean by its name without JNDI-Lookup

I want to write a custom BeanResolver for the Spring Expression Language to resolve EJBs in expressions (for example "@MyBean.property=='example-value'"). How can I retrieve a bean by its name without ...
5
votes
1answer
184 views

is SpEL supported in import statements?

I would like to import different resource files based on some condition. Is this possible? These don't work: <import resource="#{ systemProperties['foo'] }.xml" /> <import resource="#{ ...
4
votes
2answers
273 views

Spring expression in xml configuration file

It is useful to have different property sets for different users. <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" ...
0
votes
2answers
132 views

How to inject a bean only when it exists

I have the following structure of spring context files ( -> stands for 'includes') : A1.xml -> B.xml & C.xml A2.xml -> B.xml C.xml defines a bean c B.xml defines a bean b with a ...
1
vote
1answer
188 views

Extending SpEL with own methods in Grails?

I'd like to add custom SpEL methods in Grails applciation, like it's done for plain Spring-Security application in this question, by overriding EvaluationContext. Will this work? How do I plug ...
0
votes
1answer
195 views

How to access objects inside model in @PostAuthorize using SpEL

I created this method just to explain the scenario. I would like to evaluate the user domain object inside the model object. I know I can evaluate return objects and method arguments. But I got the ...
0
votes
1answer
67 views

Implicit conversion from int[] to double[]

I have two functions public static double avg(int[] values) { if(values == null || values.length == 0) return -1; double sum = 0; for(int value:values) { sum = sum + value; } ...
0
votes
1answer
180 views

Is it possible to use Spring SpEL expression in c:set to instantiate new class?

I would like to do something like: <c:set var="customer" value="${new com.test.Customer()}" /> but this doesn't work. Is there something like this possible?
3
votes
1answer
147 views

Where can I find an implementation of Java EL 3.0

The Expression Language version 3.0 is currently being designed. It adds various cool features like mapping and filtering collections by a lambda expression. Spring EL has a comparable feature which ...
1
vote
1answer
135 views

Spring Ehcache : Delete entries by a condition like endDate > now

I would like to delete entries that satisfy a condition(e.g : Delete entries endDate > now) using annotation provided by Spring over Ehcache, maybe with a SpEl expression. Something like that : ...
3
votes
2answers
127 views

Referencing beans without an id

I'm trying to reference a JPA repository using Spring expression language in Activiti. However since Spring is creating the repository beans using <jpa:repositories/>, they don't have an id ...
0
votes
1answer
104 views

Execute some code only when the user navigates to a view from a different view

I have an JSF application that uses Spring Web Flow for navigation. Each time the user navigates to the accounts view from another view a piece of code should be executed. For the accounts view I have ...
3
votes
1answer
761 views

Difference between Spring Expression Language (SpEL) and Unified Expression Language (UEL)

what are the differences between the Spring Expression Language (SpEL) and the Unified Expression Language (UEL)? The official Spring Documentation says: "The language syntax is similar to ...
0
votes
1answer
222 views

Write a custom PlaceholderResolver in Spring (like PropertyPlaceholderConfigurerResolver)

I am using MBeans in an web application for application properties which a lot of people normally put in property files. The MBeans will be written and read from a database for persistence. I am ...
1
vote
1answer
1k views

EhCache: @CacheEvict on Multiple Objects Using Annotations

I understand that using Spring's (3.1) built in CacheManager using the EhCache implementation, there are certain limitations when in proxy mode (the default) as per this post: Spring 3.1 @Cacheable - ...

1 2 3