1. Unnecessary file and code removed.
2. Project is relocated to spring-cloud folder
This commit is contained in:
parent
c12ba1bf26
commit
bc8caf3266
Binary file not shown.
|
@ -1,60 +0,0 @@
|
|||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<title>Demo</title>
|
||||
<meta name="description" content="" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<base href="/" />
|
||||
<link rel="stylesheet" type="text/css"
|
||||
href="/webjars/bootstrap/css/bootstrap.min.css" />
|
||||
<script type="text/javascript" src="/webjars/jquery/jquery.min.js"></script>
|
||||
<script type="text/javascript"
|
||||
src="/webjars/bootstrap/js/bootstrap.min.js"></script>
|
||||
<script type="text/javascript" src="/webjars/js-cookie/js.cookie.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Demo</h1>
|
||||
<div class="container unauthenticated">
|
||||
With Facebook: <a href="/login">click here</a>
|
||||
</div>
|
||||
|
||||
<div class="container authenticated" style="display: none">
|
||||
Logged in as: <span id="user"></span>
|
||||
<div>
|
||||
<button onClick="logout()" class="btn btn-primary">Logout</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
$.get("/user", function(data) {
|
||||
$("#user").html(data.userAuthentication.details.name);
|
||||
$(".unauthenticated").hide()
|
||||
$(".authenticated").show()
|
||||
});
|
||||
var logout = function() {
|
||||
$.post("/logout", function() {
|
||||
$("#user").html('');
|
||||
$(".unauthenticated").show();
|
||||
$(".authenticated").hide();
|
||||
})
|
||||
return true;
|
||||
}
|
||||
$.ajaxSetup({
|
||||
beforeSend : function(xhr, settings) {
|
||||
if (settings.type == 'POST' || settings.type == 'PUT'
|
||||
|| settings.type == 'DELETE') {
|
||||
if (!(/^http:.*/.test(settings.url) || /^https:.*/
|
||||
.test(settings.url))) {
|
||||
// Only send the token to relative URLs i.e. locally.
|
||||
xhr.setRequestHeader("X-XSRF-TOKEN", Cookies
|
||||
.get('XSRF-TOKEN'));
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -19,8 +19,8 @@ public class WebSecurityConfigurer
|
|||
extends
|
||||
WebSecurityConfigurerAdapter {
|
||||
|
||||
@Autowired
|
||||
private OAuth2ClientContext oauth2ClientContext;
|
||||
// @Autowired
|
||||
// private OAuth2ClientContext oauth2ClientContext;
|
||||
|
||||
@Override
|
||||
protected void configure(HttpSecurity http)
|
|
@ -2,7 +2,7 @@
|
|||
<html lang="en" xmlns:th="http://www.thymeleaf.org">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<title>My Website - Current time</title>
|
||||
<title>My Website - Getting Personal Information</title>
|
||||
<script th:inline="javascript">
|
||||
/*<![CDATA[*/
|
||||
function refreshTime() {
|
Loading…
Reference in New Issue