如何在spring应用程序上下文中添加新行作为map值

时间:2013-01-24 14:05:35

标签: java spring

在我的应用程序上下文中,我已经定义了一个地图:

<util:map map-class="java.util.concurrent.ConcurrentHashMap">                        
                        <entry key="test" value="here I need to add new line" />
                    </util:map>

在价值中我需要添加新行:

我试试:

 <entry key="test" value="s
s" />

 <entry key="test" value="s\ns" />

但没有成功

请帮帮我

1 个答案:

答案 0 :(得分:2)

尝试http://en.wikipedia.org/wiki/Numeric_character_reference

<util:map id="map" map-class="java.util.concurrent.ConcurrentHashMap">
    <entry key="test" value="s&#10;s" />
</util:map>