File tree Expand file tree Collapse file tree 2 files changed +15
-17
lines changed Expand file tree Collapse file tree 2 files changed +15
-17
lines changed Original file line number Diff line number Diff line change 296
296
<groupId >org.springframework.boot</groupId >
297
297
<artifactId >spring-boot-starter-jdbc</artifactId >
298
298
</dependency >
299
- <!--
300
- <dependency>
301
- <groupId>javax.transaction</groupId>
302
- <artifactId>javax.transaction-api</artifactId>
303
- <scope>compile</scope>
304
- </dependency>
305
- -->
299
+
306
300
<dependency >
307
301
<groupId >javax.interceptor</groupId >
308
302
<artifactId >javax.interceptor-api</artifactId >
309
303
<scope >compile</scope >
310
304
</dependency >
311
- </dependencies >
312
-
313
305
306
+ <dependency >
307
+ <groupId >org.springframework.boot</groupId >
308
+ <artifactId >spring-boot-starter-security</artifactId >
309
+ </dependency >
310
+ </dependencies >
314
311
315
312
<build >
316
313
<pluginManagement >
Original file line number Diff line number Diff line change @@ -54,8 +54,8 @@ spring:
54
54
exceptiontranslation :
55
55
enabled : true
56
56
datasource :
57
- url : ${DATABASE_URL} 'jdbc:postgresql://localhost:5432/learn-neo4j?user=jdbc&password=jdbcpwd&schema=public'
58
- jdbcUrl : ${DATABASE_URL} 'jdbc:postgresql://localhost:5432/learn-neo4j?user=jdbc&password=jdbcpwd&schema=public'
57
+ url : ${DATABASE_URL}
58
+ jdbcUrl : ${DATABASE_URL}
59
59
username : jdbc
60
60
password : jdbcpwd
61
61
driver-class-name : org.postgresql.Driver
@@ -77,13 +77,14 @@ spring:
77
77
generate-ddl : true
78
78
show-sql : true
79
79
session :
80
- store-type : jdbc
81
- jdbc :
82
- initializer :
83
- enabled : true
84
- devtools :
85
- livereload :
80
+ store-type : jdbc
81
+ jdbc :
82
+ schema : classpath:org/springframework/session/jdbc/schema-postgresql.sql
83
+ initializer :
86
84
enabled : true
85
+ devtools :
86
+ livereload :
87
+ enabled : true
87
88
template :
88
89
cache : false
89
90
thymeleaf :
You can’t perform that action at this time.
0 commit comments