我试图在grails 2.2.2中运行我的第一个应用程序..但它给了我一个错误..当我点击调试

时间:2013-05-16 05:04:31

标签: grails grails-plugin

  

错误2013-05-16 10:27:41,523 [localhost-startStop-1]错误   context.GrailsContextLoader - 初始化应用程序时出错:   com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap $ Builder.maximumWeightedCapacity(J)LCOM / googlecode上/ concurrentlinkedhashmap / ConcurrentLinkedHashMap $生成器;   信息:   com.googlecode.concurrentlinkedhashmap.ConcurrentLinkedHashMap $ Builder.maximumWeightedCapacity(J)LCOM / googlecode上/ concurrentlinkedhashmap / ConcurrentLinkedHashMap $生成器;

1 个答案:

答案 0 :(得分:1)

似乎你正在使用带有grails的maven。出现这个问题是因为某些旧版本的concurrentlinkedhashmap被拉到了某个地方。使用它的更新版本,您可以使用如下:

<dependency>
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
<artifactId>concurrentlinkedhashmap-lru</artifactId>
<version>1.3.2</version>
</dependency>

注意:您应该提供有关环境,grails版本等问题的更多详细信息。