Tagged Questions
OGNL stands for Object-Graph Navigation Language. It is an expression language for getting and setting properties of Java objects.
8
votes
3answers
3k views
OGNL Hello World in Java
I need to use OGNL for reading some properties from Java object. OGNL is completely new thing to me. The documentation available for OGNL is OGNL's website is really confusing to me.
So anyone can ...
5
votes
4answers
768 views
Object tree navigation language in Java
In the system which I'm currently developing I often have to navigate an object tree and based on its state and values take actions. In normal Java this results in tedious for loops, if statements ...
5
votes
4answers
7k views
Format number in Struts 2 <s:property/> tag
I would like to format number displayed by <s:property value="summary.total"/> tag in Struts 2. There is a double value. How can I do that? Should I use OGNL?
Or maybe I must use ...
4
votes
2answers
926 views
Advantages of OGNL usage over typical EL in Struts2
Say that I don't leverage OGNL to create my Struts2 web application and just purely uses typical el provided by Sun. What would be the downside of it?
As far as I know, OGNL is a kind of expression ...
3
votes
1answer
95 views
How to parse the templated sentence “#{name} invited you” using expression language
I am a new bee to Java.
My intension is to use the template like sentences in Java program (no JSP or any web related pages)
Example:
String name = "Jon";
"#{ name } invited you";
or
...
3
votes
1answer
233 views
Struts2 wildcard action mapping with ognl expressions as field-names
I am trying to populate a parameter named 'member.id' in an action class using regular expression and wildcard action mapping with Struts2. The action mapping is something like this:
<action name ...
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
1answer
264 views
struts2 no longer accepts http map parameters?
In struts2, I took advantage of built-in OGNL in struts2, naming my inputs like <input name='bag["item"].property'>
Which went to getters/setters getBag().get("item").setProperty(value)
I've ...
3
votes
1answer
3k views
How to pass parameter to method call in Struts 2 OGNL
I want to use a property as a param of an object's method.
<s:property value="orderProductId" />
returns correct value (e.g. 1)
<s:iterator ...
3
votes
2answers
2k views
struts 2, tiles 2 dynamic title
I am using tiles 2.0.6 as my template framework together with struts 2.1.6. I am writing a simple cms page and want to let the user to define the title of each html page.
I have a title definition ...
2
votes
1answer
437 views
Struts 2 OGNL s:iterator vs JSTL c:forEach performance
I've been building some fairly dynamic web applications recently that rely heavily on database(JPA) backed configurations. These applications are multi-user, multi-account systems in which the end ...
2
votes
2answers
441 views
Accessing static variable using OGNL in Struts2
Good day!
I am reading Manning's struts2 book and one of the topic is accessing the static variable using OGNL using the syntax @[fullClassName]@[property or methodCall]
so I tried it on my program ...
2
votes
1answer
210 views
Capitalizing an entire word in Struts2 / OGNL
I just can't see it. I want to do the equivalent of the following:
listValue="%{capitalize(remoteUserName)}"
inside an s:select tag.
According to the struts documentation ...
2
votes
1answer
438 views
OGNL Addition / Type Coercion
%{control.current + #displayRows}
is ultimately the statement I need executed. I have it in an s:if tag and I use test to see if this value lies within a certain range.
Ultimately, I get string ...
2
votes
2answers
159 views
Where is the documentation for OGNL officially kept now?
The OpenSymphony page no longer has it. A link to ognl.org from the Struts 2 documentation is also dead. So where is the official OGNL site now?
2
votes
3answers
219 views
JSONObject serialization using template
i have to build a text from a JSONObject and a Template up. The template seems like this:
"Hi ${user.name} ${user.surname},
greetings from ${sender.name} with "${message}"
The template is not ...
2
votes
1answer
559 views
How do I have dynamic parameter names in a Struts 2 action redirect?
So I'm trying to create an action redirect that has dynamic parameter names as well as values. I understand how to do this in the struts.xml file for parameter values, but cannot seem to get things ...
2
votes
1answer
300 views
Struts2 WARN OgnlValueStack:45 - Could not find property
My struts2 application works fine, I just keep getting these warnings for properties I may or may not need. Any advice on how to get rid of the warnings?
10:17:17,184 WARN OgnlValueStack:45 - ...
2
votes
3answers
172 views
template language for ASP.NET MVC
is there any template language for ASP.NET MVC like JSTL and OGNL?
Thanks in advance.
2
votes
1answer
385 views
Difference between '#','%' and '$'
I'm new to struts2 and confused by the '#','%' and '$' element. There are some usages like:
${user.name}
%{user.name}
<s:radio list="#{key1:value1,key2:value2}" />
Could any give me an ...
1
vote
1answer
55 views
How do I pass a page scoped object to a custom JSP tag using Struts 2?
I am using Struts 2 and I need to pass a page scoped variable to a custom JSP tag.
If I use OGNL syntax %{#option} I get the following error:
org.apache.jasper.JasperException: PWC6338: Cannot ...
1
vote
0answers
165 views
Struts2 Jquery Plugin issue
I am working on a struts2 application and using Struts2-Jquery plugin along with it.
Struts2 version -->2.2.3.1
Struts2-Jquery-Plugin-->3.2.0
Struts2-json plugin-->2.2.3.1
i have a search ...
1
vote
1answer
99 views
Struts 2 “%” sign and '#" sign in OGNL
Anybody can tell me how to use "%" and "#" sign in STRUTS2 OGNL? I google around, but can't find any valuable info about this.Or give me a link of documentation of this.
thanks
1
vote
1answer
123 views
Struts 2 does not populate POJO from client
I have a Java Object with many other nested Objects and lists of Objects. When the request arrives from the client, I see that the Object is populated only to a few levels. Is there any configuration ...
1
vote
0answers
409 views
Struts2 debug=browser does not capture url parameters in action class variables?
I have a very simple action class with one member variable "data". when I submit the normal url it shows value in tomcat console like:Test action data=hello
public class ActionTest extends ...
1
vote
0answers
582 views
Accessing Map attribute with dynamic key in Struts 2 OGNL
I have a list of Strings that are attribute names and a Map.
I'm trying to access a model(ex.project) in the map using attribute name in string list.
Here is what I have now.
<s:iterator ...
1
vote
2answers
2k views
comparing two valuestack string values in JSP - struts2
Thanks in advance for your time.
I need to preselect a radio button if it has a saved value. I basically need to compare 2 strings in the valuestack to determine this.
(I can't use <s:radio at ...
1
vote
1answer
2k views
Checking request parameter value in Struts2 tag
I have the following code in my jsp:
<s:property value="#parameters['test']"/>
<br/><s:property value="'1'.equals(#parameters['test'])"/>
now if I access this action like this:
...
1
vote
1answer
894 views
Struts 2 - Accessing different properties on the ValueStack sharing the same name
Struts 2 will resolve all property names during view rendering against the top object in the ValueStack first. But how can one access a property with the same name on the object lower on the stack?
...
1
vote
1answer
331 views
How can I get the revision number into an Ant property in Luntbuild?
I'm sure this must be possible:
I want to have the revision number (from Subversion) put into a property that is accessible from Ant when my build runs in Luntbuild. There must be an OGNL expression ...
1
vote
2answers
1k views
Struts ognl expression to evalulate the result of the expression
This is going to be a little tricky to explain. I'm trying to write a tag to componentise a bunch of address fields, but I'm having trouble working out the ognl expression.
Expected usage:
...
0
votes
0answers
15 views
Struts2 validate before conversion error
I am developing a model based web application on Struts2.2.3. What I mean by model is, database tables are represented as java classes(you know). And models have properties with types such as Integer, ...
0
votes
1answer
34 views
Concatenating parameters in struts2 iframe load
using Struts2, I successfully load an external URL inside a jsp page using an iframe like this:
<iframe src="http://www.abcd.com/somedir/index.php">
</iframe>
I’m also able to pass a ...
0
votes
1answer
38 views
struts 2 iterator perform slow
I am using strut2 in my project. in which in jsp pages i have show list of more items greater than 500 . I have used follwing tags.
<s:iterator value="list" status="status" >
...
0
votes
2answers
42 views
struts2: select tag doesn't like beans with “parameters” property?
I have a base class ReportElement which has type property:
public abstract class ReportElement {
private ReportElementType type;
public ReportElementType getType() {
return type;
...
0
votes
1answer
44 views
Struts 2 setter unknown field parameters
My struts 2 (2.3.1) application at debug mode for url http://localhost/app/check.action?13239 raises such kind of exceptions
2011-12-15 14:45:06,455 DEBUG [CommonsLogger.java:68] : Setting static ...
0
votes
0answers
31 views
OGNL error for struts multiselect tag
I'm getting this error for a <s:select> tag in my logs.
The error seems to be benign though as everything is saved properly to the database. It is still frustrating to see the error popup.
The ...
0
votes
1answer
67 views
struts2 ognl retrieve data from session (nested property tags?)
I have a situation where I would like to retrieve data from the session on a jsp using OGNL. The data in my session is stored like this:
/data/abc/-Name (key) -> ABC Inc. (value)
I can easily ...
0
votes
1answer
89 views
struts2: avoiding hardcode in struts tags, jsp
When using struts2 I can access my session attributes inside struts2 tags using OGNL expression like this:
#session['object_key']
The problem is that I use this expression on different pages, every ...
0
votes
1answer
46 views
Struts 2 how to reference a value with dynamic name on the valuestack
Say there is a value in valuestack of struts 2; when we code the jsp, we don't know what the exact variable name of this value, but we only know that the variable name of this value is saved in ...
0
votes
0answers
62 views
In jsp, invoke method on action implementing ModelDriven<E>
I'm trying to invoke an action method in my jsp. I know, sounds easy:
<s:set var="key" value="1"/>
<s:set var="heading" value="getHeading(key)"/>
With a method named getHeading in my ...
0
votes
1answer
141 views
calling methods on collection objects using OGNL or struts2 tags
i have a collection (an arraylist) in action class in which i m storing java mail api's Message class objects.
In jsp i want to access each message from this collection and wants to call ...
0
votes
2answers
223 views
Using jQuery Templates in Struts2
I am attempting to update a page using Struts2 (using jOWL to display an ontology). The original HTML page uses jQuery templates, having several lines such as:
<h2 class="propertybox title" ...
0
votes
0answers
19 views
Why does OGNL ignore synthetic and volatile methods?
In OgnlRuntime we have:
static boolean isMethodCallable(Method m)
{
if ((isJdk15() && m.isSynthetic()) || Modifier.isVolatile(m.getModifiers()))
return false;
return true;
}
...
0
votes
2answers
141 views
How to validate two textfields value in struts validation.xml file?
I am using Struts Jquery Ajax plugin for validation . I need to validation two textfield MinAmt and MaxAmt. I need to put validation that MaxAmt always greater than MinAmt. For that i make my XML like ...
0
votes
2answers
390 views
Using within OGNL is being displayed as and not a space
I have the following nested struts 2 tags in a jsp. This is within another iterator which is in turn inside a td tag for an html table.
<s:property value="#rule.value" />
...
0
votes
1answer
315 views
OGNL dynamic access map with iterator var
I'm trying to access a map using OGNL, and I can't really access the map using the iterator var, but I can access it using the status.
Basically, this works:
<s:iterator value="categories" ...
0
votes
0answers
10 views
find objects from the application via Object graph navigation language and execute some methods of it
Can it possible to find out the objects which are dependent on current object and even execute the methods of those objects, even execute those methods of dependent objects which are using current ...
0
votes
1answer
419 views
OGNL setValue target is null
public class Customer {
private User user;
private String name;
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
...
0
votes
1answer
286 views
Referencing an attribute for a simple tag and Struts 2.x
I am writing a simple tag which contains 4 attributes like so:
<%@ taglib prefix="s" uri="/struts-tags"%>
<%@ attribute name="menuName" description="Name of Major Menu" required="true" %>
...