File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
spring-boot-docs/src/main/asciidoc
spring-boot-samples/spring-boot-sample-session/src/main/java/sample/session Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ The following technology agnostic endpoints are available:
108
108
109
109
|`sessions`
110
110
|Allows retrieval and deletion of user's sessions from Spring Session backed session
111
- store.
111
+ store.
112
112
113
113
|`shutdown`
114
114
|Allows the application to be gracefully shutdown (not enabled by default).
Original file line number Diff line number Diff line change 26
26
@ SpringBootApplication
27
27
public class SampleSessionApplication {
28
28
29
+ public static void main (String [] args ) throws Exception {
30
+ SpringApplication .run (SampleSessionApplication .class );
31
+ }
32
+
29
33
@ Bean
30
34
public UserDetailsService userDetailsService () {
31
35
InMemoryUserDetailsManager manager = new InMemoryUserDetailsManager ();
@@ -34,8 +38,4 @@ public UserDetailsService userDetailsService() {
34
38
return manager ;
35
39
}
36
40
37
- public static void main (String [] args ) throws Exception {
38
- SpringApplication .run (SampleSessionApplication .class );
39
- }
40
-
41
41
}
You can’t perform that action at this time.
0 commit comments