You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "ASF subversion and git services (JIRA)" <ji...@apache.org> on 2016/01/16 10:04:40 UTC

[jira] [Commented] (WW-3266) getFieldValue() method of ValueStackDataSource uses getDescription() to get field value may not appropriate

    [ https://issues.apache.org/jira/browse/WW-3266?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15103072#comment-15103072 ] 

ASF subversion and git services commented on WW-3266:
-----------------------------------------------------

Commit 37f822f9cce8505e28a3dba5a2ac34aa03a17dd2 in struts's branch refs/heads/master from Victor Sosa
[ https://git-wip-us.apache.org/repos/asf?p=struts.git;h=37f822f ]

Patch WW-3266

getFieldValue() method of ValueStackDataSource uses getDescription() to
get field value may not appropriate

> getFieldValue() method of ValueStackDataSource uses getDescription() to get field value may not appropriate
> -----------------------------------------------------------------------------------------------------------
>
>                 Key: WW-3266
>                 URL: https://issues.apache.org/jira/browse/WW-3266
>             Project: Struts 2
>          Issue Type: Improvement
>          Components: Plugin - JasperReports
>    Affects Versions: 2.1.6
>         Environment: JasperReports 3.6
> Groovy 1.5.5
> JDK 1.6 (MAC JDK) 
>            Reporter: Matt Jiang
>             Fix For: 2.5
>
>
> Current implementation:
> {code:java}
> String expression = field.getDescription();
> if (expression == null) {
>     //Description is optional so use the field name as a default
>     expression = field.getName();
> }
> Object value = valueStack.findValue(expression);
> {code}
> Recommended implementation :
> {code:java}
> String expression = field.getName();
> Object value = valueStack.findValue(expression);
> {code}
> Reason:
> In JasperReports, a description of a field is just like a documentation for this field. So it may not good to use it as expression.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)