-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated app to work with mssql server
- Loading branch information
1 parent
d6a90a2
commit 46d011e
Showing
8 changed files
with
10 additions
and
1,097 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
# Database connection settings | ||
spring.datasource.url=jdbc:mysql://localhost:3306/techjobs?useLegacyDatetimeCode=false&verifyServerCertificate=false&useSSL=false&requireSSL=false&allowPublicKeyRetrieval=true&serverTimezone=America/Chicago | ||
spring.datasource.username=techjobs | ||
spring.datasource.password=techjobs | ||
spring.datasource.url=jdbc:sqlserver://sqlserver.launchcodelearning.org:1433;databaseName=techjobs;encrypt=true;trustServerCertificate=true;loginTimeout=30; | ||
spring.datasource.username=sa | ||
spring.datasource.password=BKR_qet9jrp5chp3cyp | ||
|
||
# Specify the DBMS | ||
spring.jpa.database = MYSQL | ||
spring.jpa.open-in-view = false | ||
spring.jpa.open-in-view=false | ||
|
||
# Show or not log for each sql query | ||
spring.jpa.show-sql = false | ||
# Show or not log for each SQL query | ||
spring.jpa.show-sql=false | ||
|
||
# Hibernate ddl auto (create, create-drop, update) | ||
spring.jpa.hibernate.ddl-auto = update | ||
spring.jpa.hibernate.ddl-auto=update | ||
|
||
# Use spring.jpa.properties.* for Hibernate native properties (the prefix is | ||
# stripped before adding them to the entity manager) | ||
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQLDialect | ||
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.SQLServerDialect | ||
|
22 changes: 0 additions & 22 deletions
22
src/test/java/org/launchcode/techjobs/persistent/AbstractTest.java
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
src/test/java/org/launchcode/techjobs/persistent/TestCommentedTests.java
This file was deleted.
Oops, something went wrong.
231 changes: 0 additions & 231 deletions
231
src/test/java/org/launchcode/techjobs/persistent/TestTaskFour.java
This file was deleted.
Oops, something went wrong.
58 changes: 0 additions & 58 deletions
58
src/test/java/org/launchcode/techjobs/persistent/TestTaskOne.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.