spring boot bootstrap (#2031)

* minor logging fix

* spring security sso

* use basic auth

* use form login

* cleanup

* cleanup

* final cleanup

* second client app for sso

* spring boot bootstrap

* add logic

* cleanup

* add simple controller

* add thymeleaf and security

* minor fix

* minor fix

* add more boot properties
This commit is contained in:
Doha2012
2017-06-12 22:12:54 +02:00
committed by Eugen
parent 80f633198a
commit f73893bbb9
15 changed files with 594 additions and 0 deletions
@@ -0,0 +1,16 @@
package org.baeldung;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class SpringBootBootstrapApplicationTests {
@Test
public void contextLoads() {
}
}