You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@freemarker.apache.org by "zhouyanming (JIRA)" <ji...@apache.org> on 2016/09/04 10:08:20 UTC

[jira] [Created] (FREEMARKER-33) <#list map as k,v> doesn't works as expected

zhouyanming created FREEMARKER-33:
-------------------------------------

             Summary: <#list map as k,v> doesn't works as expected
                 Key: FREEMARKER-33
                 URL: https://issues.apache.org/jira/browse/FREEMARKER-33
             Project: Apache Freemarker
          Issue Type: Bug
          Components: engine
    Affects Versions: 2.3.25-incubating
            Reporter: zhouyanming
             Fix For: 2.3.26-incubating


{code:java}
package test;

import java.util.HashMap;
import java.util.Map;

public class MapFactory {

	public static Map<String, String> create() {
		Map<String, String> map = new HashMap<>();
		map.put("mykey", "myvalue");
		return map;
	}

}
{code}
{code:html}
<#list statics['test.MapFactory'].create() as k,v>
${k}
</#list>
{code}
I am expecting "mykey" only, but it render others like "getClass values .." also.



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