错误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 $生成器;
答案 0 :(得分:1)
似乎你正在使用带有grails的maven。出现这个问题是因为某些旧版本的concurrentlinkedhashmap被拉到了某个地方。使用它的更新版本,您可以使用如下:
<dependency>
<groupId>com.googlecode.concurrentlinkedhashmap</groupId>
<artifactId>concurrentlinkedhashmap-lru</artifactId>
<version>1.3.2</version>
</dependency>
注意:您应该提供有关环境,grails版本等问题的更多详细信息。