Cannot find class [org.springframework.security.oauth2.provider.token.InMemoryTokenStore] for bean with name 'tokenStore'

前端 未结 1 774
忘掉有多难
忘掉有多难 2021-01-14 17:47

I am using spring oauth2.. following is my spring-security.xml



        
相关标签:
1条回答
  • 2021-01-14 17:51

    The tokenStore is pointing to the wrong class.

    Try using

    <bean id="tokenStore" class="org.springframework.security.oauth2.provider.token.store.InMemoryTokenStore" />
    
    0 讨论(0)
提交回复
热议问题