在Spring Boot中为oauth2使用多个动态客户端

时间:2018-11-19 07:24:27

标签: spring-boot oauth-2.0

我正在使用:

Controller class:
        @GetMapping("/home")
            public ModelAndView home() {
               return new ModelAndView("home");
            }

        whenever I hit on "/home" in browser the client details are loaded 
from JSP page:

JSP page with client details:

         <div id="home">
                <form:form action="http://localhost:8080/oauth/authorize"
                    method="post" modelAttribute="user">
                    <p>               
                         <input type="text" name="response_type" value="code" /> 
                         <input type="text" name="client_id" value="client" />
                         <input type="text" name="redirect_uri" value="http://localhost:8090/welcome" />
                         <input type="text" name="scope" value="read" /> 
                         <input type="SUBMIT" value="Login" /> 


                </form:form>
            </div>  

但是我希望客户端详细信息以url而不是JSP表单类型发送,并且该客户端也可以是其详细信息在我的mysql数据库中的任何注册客户端,所以我使用了jdbcTokenStore,所以我如何实现这个,有人可以帮我吗?我真的需要帮助,因为我没有找到任何办法

0 个答案:

没有答案