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/10/10 09:03:20 UTC

[jira] [Commented] (WW-4453) tag doesn't report missing value

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

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

Commit dbf2bcb5cd2130056796ecea2f6f3c1055914097 in struts's branch refs/heads/master from [~lukaszlenart]
[ https://git-wip-us.apache.org/repos/asf?p=struts.git;h=dbf2bcb ]

WW-4453 Reduces level to WARN


> <s:date/> tag doesn't report missing value
> ------------------------------------------
>
>                 Key: WW-4453
>                 URL: https://issues.apache.org/jira/browse/WW-4453
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Plugin - Tags
>    Affects Versions: 2.3.20
>            Reporter: Lukasz Lenart
>            Assignee: Lukasz Lenart
>             Fix For: 2.3.24
>
>
> If you pass a value which isn't {{Date}} or {{Calendar}}, the {{<s:date/>}} ignores it and doesn't report any problems. The problem is here
> {code:java}
> public boolean end(Writer writer, String body) {
>     String msg;
>     java.util.Date date = null;
>     // find the name on the valueStack
>     try {
>         //suport Calendar also
>         Object dateObject = findValue(name);
>         if (dateObject instanceof java.util.Date) {
>             date = (java.util.Date) dateObject;
>         } else if(dateObject instanceof Calendar){
>             date = ((Calendar) dateObject).getTime();
>         }
>     } catch (Exception e) {
>         LOG.error("Could not convert object with key '#0' to a java.util.Date instance", name);
>     }
> {code}
> there must additional {{else}} clause to report missing value, ie:
> {code:java}
>         if (dateObject instanceof java.util.Date) {
>             date = (java.util.Date) dateObject;
>         } else if(dateObject instanceof Calendar){
>             date = ((Calendar) dateObject).getTime();
>         } else {
>             LOG.error(...);
>         }
> {code}



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