我在导入spring-security-OAuth2的源代码时遇到了这个问题。我对XML不是很熟悉。
错误的代码是
<oauth2:authorization-server client-details-service-ref="clientDetails">
<oauth2:authorization-code />
<oauth2:custom-grant token-granter-ref="tokenGranter" />
</oauth2:authorization-server>它报告了
cvc-complex-type.2.4.a: Invalid content was found starting with element 'oauth2:custom-grant'. One of '{"http://www.springframework.org/schema/security/oauth2":implicit, "http:// www.springframework.org/schema/security/oauth2":refresh-token, "http://www.springframework.org/schema/security/oauth2":client-credentials, "http://www.springframework.org/schema/ security/oauth2":password}' is expected.发布于 2013-03-15 23:54:06
您使用的是不支持“自定义授权”的旧版本Spring Security OAuth。
https://stackoverflow.com/questions/14498267
复制相似问题