gpt4 book ai didi

grails - 将一个简单的 map 注入(inject)到 Grails Controller 中

转载 作者:行者123 更新时间:2023-12-04 17:20:50 26 4
gpt4 key购买 nike

我正在尝试将 Map 注入(inject) Grails Controller 。我想将相同的 map 注入(inject)到许多 Controller 中,所以想在 resources.groovy 中定义它。

我在网上查看过,但找不到创建简单 map 的示例。

在 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 header 中有这个:
<?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。

任何提示表示赞赏。

最佳答案

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

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

关于grails - 将一个简单的 map 注入(inject)到 Grails Controller 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1589333/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com