2019-05-28springboot启动报错Failed to configure a DataSource: 'url' attribute is not specified
原因:之前导包时导入了springdata-jpa的包.他会默认去运行相关的configuration.配置的注解需要连接数据库.一个解决方式是添加exclude排除,代码如下:@springbootapplication(exclude=datasourceautoconfiguration.class)我的是一个parent有多个子模块,子模块有两个app且都加了@springbootappl