Import Mongodb branch codes
parent
f4e3f70bc2
commit
461f913f6f
|
@ -9,7 +9,7 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>client_details</title>
|
||||
<title>ClientDetails</title>
|
||||
|
||||
<style>
|
||||
.list-group li:hover {
|
||||
|
@ -22,7 +22,7 @@
|
|||
|
||||
<div class="row">
|
||||
<div class="col-md-10">
|
||||
<h3>client_details</h3>
|
||||
<h3>ClientDetails</h3>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<div class="pull-right">
|
||||
|
@ -35,6 +35,11 @@
|
|||
|
||||
<div>
|
||||
<ul class="list-group">
|
||||
<c:if test="${empty clientDetailsDtoList}">
|
||||
<li class="list-group-item">
|
||||
<p>Not yet added ClientDetails</p>
|
||||
</li>
|
||||
</c:if>
|
||||
<c:forEach items="${clientDetailsDtoList}" var="cli">
|
||||
<li class="list-group-item">
|
||||
<div class="pull-right">
|
||||
|
@ -74,11 +79,7 @@
|
|||
|
||||
</ul>
|
||||
<p class="help-block">
|
||||
每一个item对应<code>oauth_client_details</code>表中的一条数据; 共<strong>${fun:length(clientDetailsDtoList)}</strong>条数据.
|
||||
<br/>
|
||||
对spring-oauth-server数据库表的详细说明请访问
|
||||
<a href="http://andaily.com/spring-oauth-server/db_table_description.html" target="_blank">http://andaily.com/spring-oauth-server/db_table_description.html</a>
|
||||
(或访问项目others目录的db_table_description.html文件)
|
||||
每一个item对应<code>ClientDetails</code>中的一条数据; 共<strong>${fun:length(clientDetailsDtoList)}</strong>条数据.
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
|
||||
<link rel="shortcut icon" href="${contextPath}/resources/favicon.ico"/>
|
||||
|
||||
<title><decorator:title default=""/> - Spring Security&Oauth2 [MongoDB]</title>
|
||||
<title><decorator:title default=""/> - SOS [MongoDB]</title>
|
||||
|
||||
<link href="${contextPath}/resources/bootstrap.min.css" rel="stylesheet"/>
|
||||
<decorator:head/>
|
||||
|
|
|
@ -57,10 +57,10 @@
|
|||
<a href="${contextPath}/user/overview">User</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="${contextPath}/unity/dashboard">Unity</a>
|
||||
<a href="${contextPath}/unity/dashboard?access_token=[Access_token]">Unity</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="${contextPath}/m/dashboard">Mobile</a>
|
||||
<a href="${contextPath}/m/dashboard?access_token=[Access_token]">Mobile</a>
|
||||
</li>
|
||||
</ul>
|
||||
</body>
|
||||
|
|
Loading…
Reference in New Issue