-
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.
fixed eventuate-examples#15 fixed eventuate-examples#17
- Loading branch information
dartpopikyardo
committed
Jan 23, 2017
1 parent
a7a678c
commit 2af6e40
Showing
15 changed files
with
67 additions
and
29 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
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
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
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
1 change: 1 addition & 0 deletions
1
multi-module/rest-api-integration-tests/src/test/resources/application.properties
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
spring.datasource.initialize=true |
7 changes: 7 additions & 0 deletions
7
multi-module/rest-api-integration-tests/src/test/resources/schema.sql
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
create table todo ( | ||
id varchar(255) PRIMARY KEY, | ||
title varchar(255), | ||
completed BOOLEAN, | ||
order_id INTEGER, | ||
deleted BOOLEAN | ||
); |
15 changes: 13 additions & 2 deletions
15
multi-module/todo-service/src/main/resources/application.properties
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,5 +1,16 @@ | ||
|
||
spring.datasource.url=jdbc:mysql://localhost:3307/eventuate | ||
spring.datasource.username=mysqluser | ||
spring.datasource.password=mysqlpw | ||
spring.datasource.driver-class-name=com.mysql.jdbc.Driver | ||
spring.datasource.driverClassName=com.mysql.jdbc.Driver | ||
spring.datasource.continueOnError=true | ||
spring.datasource.initialize=false | ||
spring.datasource.initialSize=0 | ||
spring.datasource.timeBetweenEvictionRunsMillis=5000 | ||
spring.datasource.minEvictableIdleTimeMillis=5000 | ||
spring.datasource.minIdle=0 | ||
|
||
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect | ||
spring.jpa.properties.hibernate.hbm2ddl.auto=none | ||
spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false | ||
|
||
jpa.hibernate.naming_strategy=org.hibernate.cfg.DefaultNamingStrategy |
15 changes: 13 additions & 2 deletions
15
multi-module/todo-view-service/src/main/resources/application.properties
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,5 +1,16 @@ | ||
|
||
spring.datasource.url=jdbc:mysql://localhost:3307/eventuate | ||
spring.datasource.username=mysqluser | ||
spring.datasource.password=mysqlpw | ||
spring.datasource.driver-class-name=com.mysql.jdbc.Driver | ||
spring.datasource.driverClassName=com.mysql.jdbc.Driver | ||
spring.datasource.continueOnError=true | ||
spring.datasource.initialize=false | ||
spring.datasource.initialSize=0 | ||
spring.datasource.timeBetweenEvictionRunsMillis=5000 | ||
spring.datasource.minEvictableIdleTimeMillis=5000 | ||
spring.datasource.minIdle=0 | ||
|
||
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect | ||
spring.jpa.properties.hibernate.hbm2ddl.auto=none | ||
spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false | ||
|
||
jpa.hibernate.naming_strategy=org.hibernate.cfg.DefaultNamingStrategy |
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,5 +1,17 @@ | ||
|
||
spring.datasource.url=jdbc:mysql://localhost:3307/eventuate | ||
spring.datasource.username=mysqluser | ||
spring.datasource.password=mysqlpw | ||
spring.datasource.driver-class-name=com.mysql.jdbc.Driver | ||
spring.datasource.driverClassName=com.mysql.jdbc.Driver | ||
spring.datasource.continueOnError=true | ||
spring.datasource.initialize=false | ||
spring.datasource.initialSize=0 | ||
spring.datasource.timeBetweenEvictionRunsMillis=5000 | ||
spring.datasource.minEvictableIdleTimeMillis=5000 | ||
spring.datasource.minIdle=0 | ||
|
||
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5Dialect | ||
spring.jpa.properties.hibernate.hbm2ddl.auto=none | ||
spring.jpa.properties.hibernate.temp.use_jdbc_metadata_defaults=false | ||
|
||
jpa.hibernate.ddl-auto=none | ||
jpa.hibernate.naming_strategy=org.hibernate.cfg.DefaultNamingStrategy |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
spring.datasource.initialize=true |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
create table todo ( | ||
id varchar(255) PRIMARY KEY, | ||
title varchar(255), | ||
completed BOOLEAN, | ||
order_id INTEGER, | ||
deleted BOOLEAN | ||
); |