1

有人可以在这里帮助我吗,我收到与“类型名称冲突”相关的警告,如下所示。我正在使用 graphql-spqr-spring-boot-starter。

2020-06-06 19:04:15.972  WARN 22428 --- [           main] i.l.graphql.generator.OperationMapper    : Potential type name collision detected: 'String' bound to multiple types: java.lang.String (loaded by the bootstrap class loader) and @javax.validation.Valid() java.lang.String (loaded by the bootstrap class loader). Assign unique names using the appropriate annotations or override the TypeInfoGenerator. For details and solutions see https://github.com/leangen/graphql-spqr/wiki/Errors#non-unique-type-name. If this warning is a false positive, please report it: https://github.com/leangen/graphql-spqr/issues.

我参考了页面https://github.com/leangen/graphql-spqr/wiki/Errors#non-unique-type-name但无法找到/理解如何修复它。我是graphql的新手,非常感谢任何人的帮助。

4

1 回答 1

0

基于,您的警告是良性的。

如果两种不同的类型最终具有相同的名称,它将记录一个警告。类型是完全限定的带注释的泛型类型。因此,即使是一个不同的注释也足以触发它。在您的情况下,String并且@Valid String是不同的类型。原因是注释可以影响映射。

于 2021-05-27T17:32:04.057 回答