0
votes
1answer
135 views
struts 2, tiles 2 dynamic title
Hi Gurus,
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 …
0
votes
1answer
33 views
Multiple field ognl type converter
I have a form with (at the moment) two fields and submit the following:
capture.id = 213
capture.description = DescriptionText
The target object 'capture' is immutable and I would like to provide a …
0
votes
1answer
276 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 …
0
votes
2answers
67 views
How do I set a float without using an OGNL converter?
I have a class that looks like this:
public class Foobar {
private float value;
public void setValue(float value) {
this.value = value;
}
}
I then have a webpage (Struts2) that …
1
vote
1answer
135 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 …
0
votes
1answer
54 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 …
0
votes
1answer
527 views
Comparing struts ognl value to scriptlet value in JSP
I have to compare this to a value like below:
${page_id } ---- <% out.print(a); %>
<c:if test="${page_id != a}">
How can I do this?
0
votes
1answer
193 views
How to get request locale in OGNL?
Hi,
I want to know how to get request locale in OGNL?
For now I use
<s:set var="locale" value='#session.WW_TRANS_I18N_LOCALE?#session.WW_TRANS_I18N_LOCALE.toString():"zh_CN"'/>
This must …
0
votes
1answer
291 views
How to fix redirect OGNL error, Unable to set param?
I am not sure if this is me or if this is a bug.
I got the following error
11:52:01,623 ERROR ObjectFactory:27 - Unable to set parameter [dest] in result of type …
0
votes
1answer
260 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:
…
2
votes
1answer
103 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 …
0
votes
1answer
233 views
Tracking down permgen errors with generated classes
I'm trying to debug a j2ee application using spring and struts(2) that is slowly running out of PermGen space and eventually crashes. Right now this means restarting it regularly as I've been unable …
0
votes
1answer
73 views
.NET port of OGNL Library
Does anyone know of a good .NET port of the OGNL library here? It looks like I could use something like this and the only one I have found so far is on SourceForge here and hasn't been updated since …
