我正在使用:
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,所以我如何实现这个,有人可以帮我吗?我真的需要帮助,因为我没有找到任何办法