Tagged Questions

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

6
votes
4answers
374 views

Spring 3: Inject Default Bean Unless Another Bean Present

I would like to configure Spring via XML such that if a particular bean exists, it will be injected into the target bean. If it does not exist, a different, default bean, will be injected. For ...
6
votes
3answers
7k views

How does Spring 3 expression language interact with property placeholders?

Spring 3 has introduced a new expression language (SpEL) which can be used in bean definitions. The syntax itself is fairly well specified. What isn't clear is how, if at all, SpEL interacts with the ...
3
votes
2answers
119 views

Spring expression language (SpEL) in a console

Is there something somewhere with a swing console with a shell for Spring Expression Language?
3
votes
2answers
1k views

Benefits to using Spring EL over OGNL?

I was wondering what exactly moved Spring to use Spring EL over OGNL in its web flow product: ...
3
votes
3answers
2k views

Using spring3 @Value to access PropertyPlaceholderConfigurer values?

I'm trying to set the value of a string in a spring bean using @Value, when my property source is a subclass of PropertyPlaceholderConfigurer. Anyone know how to do this ?
2
votes
1answer
22 views

Inject the value of xml id into spring bean

I'm curious if anyone knows a quick way to accomplish my goal. I want to inject the value of the id into a String on my spring bean. This is what I want in a nutshell: <bean id="matsientst" ...
2
votes
1answer
73 views

SpEL (@NumberFormat) is not working

----SampleVO @NumberFormat(pattern = "###,##0") private int money=100000; -----controller @RequestMapping(value="/com/spelSample.do") public String spelSample(SampleVO sampleVO, Model model){ ...
2
votes
1answer
98 views

Does Spring Expression Language support IN operator?

Does Spring Expression Language support IN operator? Similar to SQL IN clause. public class Security { private secTyp1; public Security (String aSecTyp1) { secTyp1 = aSecTyp1; } } Security ...
2
votes
1answer
198 views

Spring 3.0 Expression Langugage Java Generic Parameters

I'm using Spring 3 and I have a class with a static method with the signature My.Package.MyClass.build(Map<MyObject1,MyObject2> map). In my spring bean file, I have the following: ...
2
votes
2answers
673 views

Spring Expression Language (SpEL) with @Value: dollar vs. hash ($ vs. #)

I'm a little confused concerning when to use ${...} compared to #{...}. Spring's documentation only uses #{...}, but there are plenty of examples that use ${...}. Furthermore, when I started with SpEL ...
1
vote
1answer
43 views

Spring.Caching.AspNetCache - Condition based on ReturnValue - Condition in Spring Expresion Language

I use Cache Aspect with ASP.NET Cache. I need create condition based on ReturnValue. I simplified my problem. I use CacheResult aspect on method wich return simple POCO object. Here is definiton: ...
1
vote
1answer
36 views

spEL in Bean Definition File : How to get a value in an inline list?

Given an inline list from a properties file: nameList=john,smith,junior From the bean definition file, I want to always extract the first item in my list. In this case, I would extract 'john'. ...
1
vote
2answers
40 views

SpEL cannot handle 'é'?

I'm a french so I put some é è ê ô û in my code. (and I don't speek english very well). I've a method like that in a class Formulaires: public static Formulaire exposé() And in a config spring ...
1
vote
2answers
98 views

Simple Spring EL expression does not work; with error TypeMismatchException

I have the following simple expression in my application-context.xml: <bean id="instrument" class="com.ustunozgur.Instrument" init-method="initialize" scope="prototype"> <property name="age" ...
1
vote
1answer
73 views

Calling static methods from Spring Security Expressions?

I'm looking for a way to extend Spring Security Expressions to support an existing security infrastructure. I'm aware you can extend the MethodSecurityExpressionRoot as described here, but I also ...
1
vote
2answers
259 views

Spring expression language extension in xml files

I want to extend and register my own function as detailed here: http://static.springsource.org/spring/docs/3.0.x/reference/expressions.html see section: 6.5.11 Functions. However, I wish to use this ...
1
vote
1answer
363 views

Using context:property-placeholder location with Spring EL

I'm trying to use a property-placeholder to load some properties files, and I want to specify the name of one of the files using a system property, so that I can load different files based on the ...
1
vote
1answer
306 views

Spring Integration filter expression using SPeL

I have a configuration bean that has a list of allowed values: @Component public class Conf { public List<String> getAllowedValues() { return Arrays.asList("A", "B", "C", "D"); } ...
1
vote
1answer
895 views

How to JUnit tests a @PreAuthorize annotation and its spring EL specified by a spring MVC Controller?

I've defined this method in my Spring MVC Controller : @RequestMapping(value = "{id}/content", method=RequestMethod.POST) @PreAuthorize("principal.user.userAccount instanceof ...
1
vote
1answer
373 views

Use complex expression with Spring EL (conditional & parenthesis)

I'm using spring-EL with spring security Is it possible to make 'complex' conditional expressions with parentesis? @PreAuthorize("( hasRole('ROLE_USER') and ( isOwnerDocumentUUID( #docUuids ) ) or ...
1
vote
1answer
1k views

Can I use a property placeholder with Spring EL?

Before upgrading to Spring 3 I had this in my applicationContext.xml file: <bean class="com.northgateis.pole.ws.PolePayloadValidatingInterceptor"> <property name="validateRequest" ...
1
vote
2answers
454 views

Spring.NET Expression that References an Object Definition

I'm trying to reference another object I've defined in a Spring config file from within an expression. Specifically, I'm trying to populate a property with the value of an expression where I call a ...
0
votes
1answer
49 views

propertyPlaceHolderConfigurer and environement variable

i am trying to load a property file from an environment variable, so here's what i tried: <bean id="propertyPlaceholderConfigurer" ...
0
votes
0answers
23 views

Eclipse formatting of Spring Expression Langugage

When formatting spring bean xml files in Eclipse 3.7, the formatter can wrap lines in the middle of a spring expression language value. For example, <util:list> ...
0
votes
1answer
24 views

can I inject @transactional properties into annotation?

I have services that are defined in a Spring context file and we are injecting the transactional properties using EL: ... <bean id="basicStarTrans" class="java.lang.String"> ...
0
votes
1answer
51 views

Spring: beans using namespaces in IDs conflict with SPeL

Dhanji in his book about Dependnecy Injection encourages usage of namespaces when naming spring beans. Qutation from the book: I also strongly encourage use of namespaces, for example, ...
0
votes
0answers
72 views

Elvis operator in Spring Expression Language (SpEL)

6.5.14 The Elvis Operator I'm seeing some trange behaviour using the elvis operator in SpEL. If I don't surround the elvis expression in brackets "()" then the result of the elvis operator is ...
0
votes
3answers
100 views

Does Spring Security have a 'hasAllRole' that performs the AND version of 'hasAnyRole'

I'm using Spring Security in Grails to restrict access to my controllers. I have a use case where I want to check that a user has multiple roles assigned. I realize I could just make another role ...
0
votes
2answers
135 views

List of Spring EL Variables?

Spring EL supports a some predefined variables {#systemProperties. ... } {#systemEnvironment. ... } {#request. ...} {#session. ...} The first two once are documented in the Spring Reference: ...
0
votes
1answer
302 views

Injecting Spring Spel Expressions into bean properties

How can I inject a String meant to be a spel expression into an app context bean property without having the context interpret the string property as a spel resolvable value. <bean id="x" ...
0
votes
1answer
204 views

Can Spring EL (SpEL) be configured to ignore null objects in the middle of an expression

If I have the expression: obj1.obj2.obj3 And obj2 is null, then expression fails with an exception. Is there any way to configure SpEL to just return null?
0
votes
2answers
133 views

Bean creation using Spel + hibernate

We are using Spring MVC + its built in support for uploading files. I want to set the maximum upload size utilizing SpEL. The problem is this value comes from our database. So in our old ...
0
votes
1answer
982 views

How to use logging-channel-adapter in Spring Integration to log a message header value

I need to log the value of the message header with key "foo_bar" so that the log message looks something like this when the value of that header is "baz": Value of header foo_bar: baz How to do ...
0
votes
0answers
211 views

Spring SpEL logical operators

In Spring expression language (SpEL) each textual relational operator has a symbolic equivalent. For example, eq can be written as ==, and lt can be written as < (source here). The logical ...
0
votes
2answers
469 views

How do I escape values in SpEL?

I am writing some SpEL statements in XML, and I can't get the parser to determine when I need to escape a character. I've attempted the following: <... property="someProperty" value="#{ ...
0
votes
1answer
124 views

What pattern can I use?

I am implementing a project with Selenium 2, which currently doesn't support confirm dialog boxes very well. There is a workaround to this limitation, you just overwrite the window.confirm to ...
0
votes
1answer
417 views

testing for empty string with SPEL in spring-webflow 2.1

I have a usecase where I want to set the value of a field which I keep in the session and have added to the . I keep 'myModel' in flowScope Now I would like to set a String property of object myModel ...
0
votes
1answer
120 views

Spring: What parser to use to parse security expressions

I would like to parse standard security expressions like hasRole etc. to get their value in a variable (in a JSP). How can I do that? SpelExpressionParser is the standard EL parser, but I don't think ...