File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed
java/org/woehlke/simpleworklist/config Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 65
65
66
66
<dependencyManagement >
67
67
<dependencies >
68
+ <!--
68
69
<dependency>
69
70
<groupId>org.springframework.session</groupId>
70
71
<artifactId>spring-session-bom</artifactId>
71
72
<version>Corn-SR2</version>
72
73
<type>pom</type>
73
74
<scope>import</scope>
74
75
</dependency>
76
+ -->
75
77
<dependency >
76
78
<groupId >org.webjars</groupId >
77
79
<artifactId >font-awesome</artifactId >
203
205
<groupId >org.webjars</groupId >
204
206
<artifactId >ckeditor</artifactId >
205
207
</dependency >
208
+ <dependency >
209
+ <groupId >org.springframework.session</groupId >
210
+ <artifactId >spring-session-core</artifactId >
211
+ </dependency >
206
212
<dependency >
207
213
<groupId >org.springframework.session</groupId >
208
214
<artifactId >spring-session-jdbc</artifactId >
Original file line number Diff line number Diff line change 10
10
import javax .validation .constraints .NotNull ;
11
11
12
12
@ Component
13
- @ Validated
14
13
@ Getter
15
14
@ Setter
16
15
@ ConfigurationProperties (prefix ="org.woehlke.simpleworklist" )
16
+ @ Validated
17
17
public class ApplicationProperties {
18
18
19
19
@ Valid
@@ -84,10 +84,8 @@ public static class WebMvc {
84
84
@ NotNull
85
85
private Integer controllerPageSize ;
86
86
87
- @ NotNull
88
87
private String [] staticResourceHandler ;
89
88
90
- @ NotNull
91
89
private String [] dynaicResourceHandler ;
92
90
}
93
91
@@ -102,7 +100,6 @@ public static class WebSecurity {
102
100
@ NotNull
103
101
private String logoutUrl ;
104
102
105
- @ NotNull
106
103
private String [] cookieNamesToClear ;
107
104
108
105
@ NotNull
@@ -123,7 +120,6 @@ public static class WebSecurity {
123
120
@ NotNull
124
121
private String loginPage ;
125
122
126
- @ NotNull
127
123
private String [] antPatternsPublic ;
128
124
129
125
@ NotNull
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ spring:
17
17
open-in-view : true
18
18
generate-ddl : true
19
19
hibernate :
20
- ddl-auto : update
21
- # ddl-auto: create-drop
20
+ # ddl-auto: update
21
+ ddl-auto : create-drop
22
22
properties :
23
23
hibernate :
24
24
dialect : org.hibernate.dialect.PostgreSQL95Dialect
You can’t perform that action at this time.
0 commit comments