Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
pluralsight--spring-projects
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ben Anderson
pluralsight--spring-projects
Commits
40488573
Commit
40488573
authored
Mar 31, 2021
by
Ben Anderson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Started spring boot fundamentals
parent
f7720587
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
1 deletion
+20
-1
application.properties
ps-springboot-1/src/main/resources/application.properties
+3
-1
application.yml
ps-springboot-1/src/main/resources/application.yml
+17
-0
No files found.
ps-springboot-1/src/main/resources/application.properties
View file @
40488573
spring.datasource.url
=
jdbc:postgresql://localhost:5432/conference_app
spring.datasource.url
=
${DB_URL}
spring.datasource.username
=
postgres
spring.datasource.password
=
Welcome
spring.jpa.database-platform
=
org.hibernate.dialect.PostgreSQLDialect
...
...
@@ -6,3 +6,5 @@ spring.jpa.hibernate.ddl-auto=none
spring.jpa.hibernate.show-sql
=
true
spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation
=
true
server.port
=
5000
ps-springboot-1/src/main/resources/application.yml
0 → 100644
View file @
40488573
spring
:
datasource
:
url
:
${DB_URL}
username
:
postgres
password
:
Welcome
jpa
:
database-platform
:
org.hibernate.dialect.PostgreSQLDialect
hibernate
:
ddl-auto
:
none
show-sql
:
true
properties
:
hibernate
:
jdbc
:
lob
:
non_contextual_creation
:
true
server
:
port
:
5000
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment