* move security content from spring-security-rest-full * swagger update * move query language to new module * rename spring-security-rest-full to spring-rest-full * group persistence modules * group testing modules * try fix conflict * cleanup * group and cleanup * add readme to grouping modules * move spring-jpa to persistence-modules
13 lines
495 B
Properties
13 lines
495 B
Properties
# jdbc.X
|
|
jdbc.driverClassName=com.mysql.cj.jdbc.Driver
|
|
user.jdbc.url=jdbc:mysql://localhost:3306/spring_jpa_user?createDatabaseIfNotExist=true
|
|
product.jdbc.url=jdbc:mysql://localhost:3306/spring_jpa_product?createDatabaseIfNotExist=true
|
|
jdbc.user=tutorialuser
|
|
jdbc.pass=tutorialmy5ql
|
|
|
|
# hibernate.X
|
|
hibernate.dialect=org.hibernate.dialect.MySQL5Dialect
|
|
hibernate.show_sql=false
|
|
hibernate.hbm2ddl.auto=create-drop
|
|
hibernate.cache.use_second_level_cache=false
|
|
hibernate.cache.use_query_cache=false |