1

错误 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$Builder;

4

1 回答 1

1

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

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

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

于 2013-05-16T05:31:00.000 回答