Update stuff
parent
b124375825
commit
5e6f48fa93
2
config
2
config
|
@ -1 +1 @@
|
||||||
Subproject commit 713ace9d5627c49feae933551080c70f5f5c612d
|
Subproject commit c02e79c9aad0a236f1549e849233f9b9193a025f
|
|
@ -29,7 +29,8 @@ dependencies {
|
||||||
compile('org.springframework.boot:spring-boot-starter')
|
compile('org.springframework.boot:spring-boot-starter')
|
||||||
testCompile('org.springframework.boot:spring-boot-starter-test')
|
testCompile('org.springframework.boot:spring-boot-starter-test')
|
||||||
compile('org.springframework.cloud:spring-cloud-config-server')
|
compile('org.springframework.cloud:spring-cloud-config-server')
|
||||||
|
compile('org.springframework.boot:spring-boot-starter-web')
|
||||||
|
compile('org.springframework.boot:spring-boot-starter-security')
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencyManagement {
|
dependencyManagement {
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
server.port=8888
|
server.port=8888
|
||||||
|
|
||||||
spring.cloud.config.server.git.uri=${HOME}/NWT/steleks_web_app/config
|
spring.cloud.config.server.git.uri=https://github.com/esensar/steleks_config
|
||||||
|
spring.cloud.config.server.git.clone-on-start=true
|
||||||
|
|
||||||
|
security.user.name=root
|
||||||
|
security.user.password=s3cr3t
|
|
@ -1,24 +1,24 @@
|
||||||
server.port = 9020
|
server.port = 9020
|
||||||
#
|
|
||||||
#spring.datasource.url = jdbc:mysql://localhost:3306/events
|
spring.datasource.url = jdbc:mysql://localhost:3306/events
|
||||||
#spring.datasource.username = root
|
spring.datasource.username = root
|
||||||
#spring.datasource.password = 1DvaTri!
|
spring.datasource.password = 1DvaTri!
|
||||||
#
|
|
||||||
## Keep the connection alive if idle for a long time (needed in production)
|
# Keep the connection alive if idle for a long time (needed in production)
|
||||||
#spring.datasource.testWhileIdle = true
|
spring.datasource.testWhileIdle = true
|
||||||
#spring.datasource.validationQuery = SELECT 1
|
spring.datasource.validationQuery = SELECT 1
|
||||||
#
|
|
||||||
## Show or not log for each sql query
|
# Show or not log for each sql query
|
||||||
#spring.jpa.show-sql = true
|
spring.jpa.show-sql = true
|
||||||
#
|
|
||||||
## Hibernate ddl auto (create, create-drop, update)
|
# Hibernate ddl auto (create, create-drop, update)
|
||||||
#spring.jpa.hibernate.ddl-auto = update
|
spring.jpa.hibernate.ddl-auto = update
|
||||||
#
|
|
||||||
## Naming strategy
|
# Naming strategy
|
||||||
#spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
|
spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
|
||||||
#
|
|
||||||
## Use spring.jpa.properties.* for Hibernate native properties (the prefix is
|
# Use spring.jpa.properties.* for Hibernate native properties (the prefix is
|
||||||
## stripped before adding them to the entity manager)
|
# stripped before adding them to the entity manager)
|
||||||
#
|
|
||||||
## The SQL dialect makes Hibernate generate better SQL for the chosen database
|
# The SQL dialect makes Hibernate generate better SQL for the chosen database
|
||||||
#spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
|
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
|
||||||
|
|
|
@ -1 +1,24 @@
|
||||||
server.port=9010
|
server.port=9010
|
||||||
|
|
||||||
|
spring.datasource.url = jdbc:mysql://localhost:3306/teams
|
||||||
|
spring.datasource.username = root
|
||||||
|
spring.datasource.password = 1DvaTri!
|
||||||
|
|
||||||
|
# Keep the connection alive if idle for a long time (needed in production)
|
||||||
|
spring.datasource.testWhileIdle = true
|
||||||
|
spring.datasource.validationQuery = SELECT 1
|
||||||
|
|
||||||
|
# Show or not log for each sql query
|
||||||
|
spring.jpa.show-sql = true
|
||||||
|
|
||||||
|
# Hibernate ddl auto (create, create-drop, update)
|
||||||
|
spring.jpa.hibernate.ddl-auto = update
|
||||||
|
|
||||||
|
# Naming strategy
|
||||||
|
spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
|
||||||
|
|
||||||
|
# Use spring.jpa.properties.* for Hibernate native properties (the prefix is
|
||||||
|
# stripped before adding them to the entity manager)
|
||||||
|
|
||||||
|
# The SQL dialect makes Hibernate generate better SQL for the chosen database
|
||||||
|
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
|
||||||
|
|
|
@ -1 +1,24 @@
|
||||||
server.port = 8090
|
server.port = 8090
|
||||||
|
|
||||||
|
spring.datasource.url = jdbc:mysql://localhost:3306/users
|
||||||
|
spring.datasource.username = root
|
||||||
|
spring.datasource.password = 1DvaTri!
|
||||||
|
|
||||||
|
# Keep the connection alive if idle for a long time (needed in production)
|
||||||
|
spring.datasource.testWhileIdle = true
|
||||||
|
spring.datasource.validationQuery = SELECT 1
|
||||||
|
|
||||||
|
# Show or not log for each sql query
|
||||||
|
spring.jpa.show-sql = true
|
||||||
|
|
||||||
|
# Hibernate ddl auto (create, create-drop, update)
|
||||||
|
spring.jpa.hibernate.ddl-auto = update
|
||||||
|
|
||||||
|
# Naming strategy
|
||||||
|
spring.jpa.hibernate.naming-strategy = org.hibernate.cfg.ImprovedNamingStrategy
|
||||||
|
|
||||||
|
# Use spring.jpa.properties.* for Hibernate native properties (the prefix is
|
||||||
|
# stripped before adding them to the entity manager)
|
||||||
|
|
||||||
|
# The SQL dialect makes Hibernate generate better SQL for the chosen database
|
||||||
|
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect
|
||||||
|
|
Reference in New Issue