Skip to content

Commit c27a54c

Browse files
phasenraum2010phasenraum2010
authored andcommitted
changed propeterties
1 parent be16c11 commit c27a54c

File tree

2 files changed

+15
-17
lines changed

2 files changed

+15
-17
lines changed

pom.xml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -296,21 +296,18 @@
296296
<groupId>org.springframework.boot</groupId>
297297
<artifactId>spring-boot-starter-jdbc</artifactId>
298298
</dependency>
299-
<!--
300-
<dependency>
301-
<groupId>javax.transaction</groupId>
302-
<artifactId>javax.transaction-api</artifactId>
303-
<scope>compile</scope>
304-
</dependency>
305-
-->
299+
306300
<dependency>
307301
<groupId>javax.interceptor</groupId>
308302
<artifactId>javax.interceptor-api</artifactId>
309303
<scope>compile</scope>
310304
</dependency>
311-
</dependencies>
312-
313305

306+
<dependency>
307+
<groupId>org.springframework.boot</groupId>
308+
<artifactId>spring-boot-starter-security</artifactId>
309+
</dependency>
310+
</dependencies>
314311

315312
<build>
316313
<pluginManagement>

src/main/resources/application.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ spring:
5454
exceptiontranslation:
5555
enabled: true
5656
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}
5959
username: jdbc
6060
password: jdbcpwd
6161
driver-class-name: org.postgresql.Driver
@@ -77,13 +77,14 @@ spring:
7777
generate-ddl: true
7878
show-sql: true
7979
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:
8684
enabled: true
85+
devtools:
86+
livereload:
87+
enabled: true
8788
template:
8889
cache: false
8990
thymeleaf:

0 commit comments

Comments
 (0)