0

我在这里克隆了项目https://github.com/OhadR/oAuth2-sample

为所有 3 个项目 oauth2-client、oauth2-auth-server、resource-sercer 的 pom.xml 中的父级设置适当的版本

    <version>1.6.2-SNAPSHOT</version>

我将 3 个项目添加到 auth-parent 中的模块部分。我使用构建战争文件mvn install.

<modules>
    <module>auth-common</module>
    <module>common-crypto</module>
    <module>authentication-flows</module>
    <module>oauth2-auth-server</module>
    <module>oauth2-client</module>
    <module>oauth2-resource-server</module>
</modules>

我将 3 generate war 文件放在 jetty/webapps 中。客户端和资源服务器似乎加载正常,但 oauth2-auth-server 没有。在 localhost:8080 我得到UNAVAILABLE了 oauth2-auth-server。

我尝试通过为 oauth2-auth-server添加maven-jetty plugin和进行调试。mvn jetty:run但我明白了

org.springframework.beans.factory.BeanDefinitionStoreException: Unexpected exception parsing XML document from ServletContext resource [/WEB-INF/spring-servlet.xml]; nested exception is org.springframework.context.annotation.ConflictingBeanDefinitionException: Annotation-specified bean name 'authenticationSuccessHandler' for bean class [com.ohadr.auth_flows.core.AuthenticationSuccessHandler] conflicts with existing, non-compatible bean definition of same name and class [com.ohadr.oauth_srv.web.OhadAuthenticationSuccessHandler]
4

1 回答 1

0

不确定我是否看到问题 - 您是否尝试使用 maven 命令“mvn clean install”从主目录构建它?

然后 Maven 将构建所有子模块,它们是common-cryptoauthentication-flows

我的 oAuth-Sample 项目用作 oAuth 示例以及“身份验证流”逻辑

您是为 oAuth-sample 还是为“authentication-flows”构建此 oAuth-sample?

希望对您有所帮助(并对延迟感到抱歉)

于 2015-12-20T21:30:27.953 回答