将简单地图注入Grails控制器

时间:2009-10-19 15:22:09

标签: grails config

我正在尝试将Map注入Grails控制器。我想将相同的地图注入到许多控制器中,因此希望在resources.groovy中定义它。

我看过网络但找不到创建简单地图的示例。

在Spring MVC中,我使用过这样的东西:

<util:map id="diplomaPermissions">
   <entry>
      <key>1</key>
      <value>Diploma_AQA_Building_And_Construction</value>
   </entry>
   <entry>
      <key>1</key>
      <value>Diploma_Edexcel_Building_And_Construction</value>
   </entry>
</util:map>

在我的xml标题中使用:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:util="http://www.springframework.org/schema/util"
    xmlns:p="http://www.springframework.org/schema/p" 
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="
        http://www.springframework.org/schema/beans 
        http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
        http://www.springframework.org/schema/util 
        http://www.springframework.org/schema/util/spring-util-2.5.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context-2.5.xsd">

但是如果我使用spring xml文件,这似乎不适用于grails。

任何提示赞赏。

2 个答案:

答案 0 :(得分:9)

经过进一步调查,您可以在“resources.groovy”

中创建地图
    beans = {
        diplomaPermissions(org.springframework.beans.factory.config.MapFactoryBean) {
        sourceMap = [
                  1:"Diploma_AQA_Building_And_Construction", 
                  2:"Diploma_Edexcel_Building_And_Construction" 
                ] 
        }
    }

答案 1 :(得分:2)

我认为这可能与你期待的弹簧版本有关;当使用旧样式创建地图时,一切正常。

在spring配置目录

中的resources.xml中尝试此操作
<bean id="testMap" 
     class="org.springframework.beans.factory.config.MapFactoryBean">
  <property name="sourceMap">
      <map>
        <entry key="key1" value="value1"/>
        <entry key="key2" value="value2"/>
      </map>
  </property>
</bean>

这在你的控制器上

class DisplayMapController {
    def  testMap

    def index = {  
        render (contentType: "text/plain") {
                    div(id:"myDiv") { p "$testMap" }
            }
    }
}