springboot 配置了双数据源mysql和sqlserver,怎么只让mysql创建表sqlserver不自动创建表
首先是properties配置 当然mysql 和 sqlserver的jar包要加上。 #mysql spring.datasource.primary.url=jdbc:mysql://localhost:3306/db_company?useUnicode=true&characterEncoding=utf-8 spring.datasource.primary.username = root spring.datasource.primary.password = 123456 spring.datasource.primary.driverClassName = com.mysql.jdbc.Driver spring.datasource.primary.max-active=20 spring.datasource.primary.max-idle=8 spring.datasource.primary.max-maxWait=100 spring.datasource.primary.min-idle=8 spring.datasource.primary.initial-size=10 #sqlserver spring.datasource.second.url=jdbc:sqlserver://192.168.x.xxx:1433;database=QSTMGood spring.datasource.second.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver spring.datasource.second.username=sa spring.datasource.second.password=baitu123 spring.datasource.second.initialSize=1 spring.datasource.second.minIdle=1 spring.datasource.second.maxActive=20 spring.datasource.second.maxWait=30000 spring.datasource.second.timeBetweenEvictionRunsMillis=40000 spring.datasource.second.minEvictableIdleTimeMillis=300000 接下来是jdbctemplate的设置
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。